diff options
Diffstat (limited to 'src/tree.h')
-rw-r--r-- | src/tree.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,12 @@ struct Tree; +/* +struct Data { + size_t length; + void *data; +}; +*/ + int @@ -16,3 +23,6 @@ tree_remove(const struct Tree *const t, const void *const value); bool tree_contains(const struct Tree *const, const void *const value); + +// void * +// tree_search(); |