rename crs_* types to ct_*
This commit is contained in:
parent
2d76f8221e
commit
1dd5dd79c8
6 changed files with 75 additions and 75 deletions
|
|
@ -3,13 +3,13 @@
|
|||
|
||||
#include "node.h"
|
||||
|
||||
struct crs_tree {
|
||||
struct crs_node *root;
|
||||
struct ct_tree {
|
||||
struct ct_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);
|
||||
int init_tree(struct ct_tree **const tree);
|
||||
void destroy_tree(struct ct_tree *const tree);
|
||||
void resize_tree(struct ct_tree *const tree, struct ct_dims *const dims);
|
||||
|
||||
#endif /* CURSETREE_TREE_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue