libifupdown: add a simple key-value dictionary based on linked lists

This commit is contained in:
Ariadne Conill 2020-07-18 03:08:47 -06:00
parent 803f51efe8
commit 3f618d2a3b
4 changed files with 134 additions and 1 deletions

View file

@ -2,7 +2,9 @@ CFLAGS := -ggdb3 -O2 -Wall -I.
LIBIFUPDOWN_SRC = \
libifupdown/list.c
libifupdown/list.c \
libifupdown/dict.c
LIBIFUPDOWN_OBJ = ${LIBIFUPDOWN_SRC:.c=.o}