53
53
/* Red black tree typedefs */
54
54
typedef struct ib_rbt_struct ib_rbt_t;
55
55
typedef struct ib_rbt_node_struct ib_rbt_node_t;
57
57
typedef struct ib_rbt_bound_struct ib_rbt_bound_t;
58
58
typedef void (*ib_rbt_print_node)(const ib_rbt_node_t* node);
59
59
typedef int (*ib_rbt_compare)(const void* p1, const void* p2);