16 lines
354 B
C
16 lines
354 B
C
|
|
#ifndef CURSETREE_TREE_H
|
||
|
|
#define CURSETREE_TREE_H
|
||
|
|
|
||
|
|
#include "node.h"
|
||
|
|
|
||
|
|
struct crs_tree {
|
||
|
|
struct crs_node *root;
|
||
|
|
};
|
||
|
|
|
||
|
|
/* === External Interface === */
|
||
|
|
int init_tree(struct crs_tree **const tree);
|
||
|
|
void destroy_tree(struct crs_tree *const tree);
|
||
|
|
void resize_tree(struct crs_tree *const tree, struct crs_nodedims *const dims);
|
||
|
|
|
||
|
|
#endif /* CURSETREE_TREE_H */
|