This commit is contained in:
Bob Halley
1998-11-16 23:50:01 +00:00
parent 6a632f6968
commit 9df01daac3
2 changed files with 28 additions and 23 deletions

View File

@@ -4,8 +4,10 @@
* file is used as a template.
*/
#include <isc/result.h>
typedef struct RBT_NODE *RBT_NODE_T;
void RBT_INSERT(RBT_NODE_T, RBT_NODE_T *);
RBT_NODE_T RBT_SEARCH(RBT_NODE_T, RBT_KEY_T);
void RBT_PRINT(RBT_NODE_T);
RBT_LINKAGE isc_result_t RBT_INSERT(RBT_NODE_T, RBT_NODE_T *);
RBT_LINKAGE RBT_NODE_T RBT_SEARCH(RBT_NODE_T, RBT_KEY_T);
RBT_LINKAGE void RBT_PRINT(RBT_NODE_T);