Initial implementation of Btree

This commit is contained in:
Phireh 2025-02-17 21:03:09 +01:00
commit 98bea5b32a
3 changed files with 121 additions and 9 deletions

2
list.h
View file

@ -139,7 +139,7 @@ typedef struct dnode_ {
void *vptr;
};
dnode_ptr next;
dnode_ptr prev;
dnode_ptr prev;
} dnode_t;
void dlist_append(dnode_t *start, dnode_t *tail)