7 /* This structure should be embedded in a larger data structure;
8 the final output from rb_search() can then be converted back
9 to the larger data structure via container_of(). */
12 struct rbtree
*left
, *right
;
16 struct rbtree
*rb_insert(struct rbtree
*, struct rbtree
*);
17 struct rbtree
*rb_search(struct rbtree
*, uint64_t);
19 #endif /* NASM_RBTREE_H */