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

View file

@ -1,7 +1,7 @@
IHCT_CFLAGS=-Wall -Wextra -Wpedantic -Wfatal-errors -std=gnu99 -fPIC -shared
TEST_CFLAGS=-Wall -Wextra -Wpedantic -Wfatal-errors -DIHCT_SHORT -L./ -Wl,-rpath ./
tests: tests.c list.h libihct.so
tests: tests.c list.h tree.h libihct.so
gcc $(TEST_CFLAGS) tests.c -lihct -o tests
libihct.so: ihct/vector.c ihct/ihct.c