tupperware: add intrusive AVL tree

This commit is contained in:
Bruno BELANYI 2020-11-24 19:42:16 +01:00
parent 013981b79b
commit 0e9f8d615a
3 changed files with 485 additions and 0 deletions

View file

@ -4,6 +4,7 @@ CPPFLAGS = -Iinclude/ -Itests/
VPATH = src/ tests/
SRC = \
src/avl.c \
src/list.c \
OBJS = $(SRC:.c=.o)