00001 #ifndef __BT_INT__ 00002 #define __BT_INT__ 00003 00004 struct bti_node { 00005 int data; 00006 struct bti_node *l,*r; 00007 }; 00008 00009 int BTI_init( struct bti_node **n ); 00010 int BTI_add( struct bti_node **n, int value ); 00011 int BTI_dump( struct bti_node **n ); 00012 int BTI_done( struct bti_node **n ); 00013 00014 #endif
1.5.1