Files
bluelib/object/tree.h

15 lines
204 B
C
Raw Normal View History

2024-10-24 19:24:54 +01:00
#ifndef _B_TREE_H_
#define _B_TREE_H_
#include "../object.h"
#include <blue/core/queue.h>
#include <blue/object/tree.h>
struct b_tree {
struct b_object t_base;
struct b_tree_node *t_root;
};
#endif