(UNDER CONSTRUCTION) implementing general child nodes

bifurcation was limited and I needed something more powerful
This commit is contained in:
Emile Clark-Boman 2025-09-15 17:11:06 +10:00
parent fa97c73522
commit 6b5bcff1a4
3 changed files with 97 additions and 14 deletions

View file

@ -13,8 +13,9 @@ typedef struct _win_st WINDOW;
#define NODE_CHILDREN_GROWTH 1.5
#define CINDEX_MAX UCHAR_MAX
#define NFLAG_EMPTY (0)
#define NFLAG_RESIZE (1<<0)
#define NFLAG_EMPTY (0)
#define NFLAG_RESIZE (1<<0)
#define NFLAG_TOOSMALL (1<<1)
/* Child Index */
typedef unsigned char cindex;