libctru/libctru/source/util/rbtree/rbtree_init.c
2015-01-16 11:44:05 -06:00

11 lines
216 B
C

#include <3ds/util/rbtree.h>
void
rbtree_init(rbtree_t *tree,
rbtree_node_comparator_t comparator)
{
tree->root = NULL;
tree->comparator = comparator;
tree->size = 0;
}