tupperware: add vector container

This commit is contained in:
Bruno BELANYI 2020-11-25 17:58:51 +01:00
parent 0126fcd544
commit 8d83f778be
3 changed files with 184 additions and 1 deletions

View file

@ -1,11 +1,12 @@
CC = gcc
CFLAGS = -Wall -Wextra -pedantic -std=c99 -Werror
CPPFLAGS = -Iinclude/ -Itests/
CPPFLAGS = -Iinclude/ -Itests/ -D_DEFAULT_SOURCE
VPATH = src/ tests/
SRC = \
src/avl.c \
src/list.c \
src/vector.c \
OBJS = $(SRC:.c=.o)