11 lines
280 B
C
11 lines
280 B
C
#ifndef CURSETREE_CURSETREE_H
|
|
#define CURSETREE_CURSETREE_H
|
|
|
|
#include "tree.h"
|
|
|
|
/* === External Interface === */
|
|
int ct_init(struct ct_tree **const tree);
|
|
void ct_update(struct ct_tree *const tree);
|
|
void ct_process(struct ct_tree *const tree);
|
|
|
|
#endif /* CURSETREE_CURSETREE_H */
|