mirror of
https://gitee.com/anod/open_agb_firm.git
synced 2025-05-07 22:34:12 +08:00
8 lines
104 B
C
8 lines
104 B
C
#include "arm11/util/rbtree.h"
|
|
|
|
int
|
|
rbtree_empty(const rbtree_t *tree)
|
|
{
|
|
return tree->root == NULL;
|
|
}
|