Skip to content
Snippets Groups Projects
Commit aafdf48e authored by Howard Chu's avatar Howard Chu
Browse files

Add tavl_end and tavl_next

parent ecc51869
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,15 @@ tavl_find LDAP_P((Avlnode *, const void*, AVL_CMP));
LDAP_AVL_F( Avlnode* )
tavl_find2 LDAP_P((Avlnode *, const void*, AVL_CMP));
#define TAVL_DIR_LEFT 0
#define TAVL_DIR_RIGHT 1
LDAP_AVL_F( Avlnode* )
tavl_end LDAP_P((Avlnode *, int direction ));
LDAP_AVL_F( Avlnode* )
tavl_next LDAP_P((Avlnode *, int direction ));
/* apply traversal types */
#define AVL_PREORDER 1
#define AVL_INORDER 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment