diff options
Diffstat (limited to 'trees.h')
-rw-r--r-- | trees.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -16,7 +16,8 @@ struct tnode /* function prototypes */ struct tnode *bintree_insert(struct tnode *, char *); -void treeprint_inorder(struct tnode *); - +void treeprint_prefix(struct tnode *); +void treeprint_infix(struct tnode *); +void treeprint_postfix(struct tnode *); #endif |