Works as intended except for SEGFAULT in free, need to check vec impl

This commit is contained in:
Maix0 2024-06-24 00:57:18 +02:00
parent 9f6b90d596
commit efec224b6a
7 changed files with 1427 additions and 10 deletions

View file

@ -6,7 +6,7 @@
# By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/11/03 13:20:01 by maiboyer #+# #+# #
# Updated: 2024/06/23 22:03:59 by maiboyer ### ########.fr #
# Updated: 2024/06/24 00:37:07 by maiboyer ### ########.fr #
# #
# **************************************************************************** #
@ -24,7 +24,7 @@ CC ?= cc
CFLAGS = -Wall -Wextra -Werror -MMD -I./includes -I../includes -I../output/include -g3
#CFLAGS += -fsanitize=address -fno-omit-frame-pointer -fsanitize-address-use-after-return=runtime -fno-common -fsanitize-address-use-after-scope
SRC_FILES = combined scanner funcs create_language
SRC_FILES = lib
GEN_FILES =
SRC = $(addsuffix .c,$(addprefix $(SRC_DIR)/,$(SRC_FILES))) $(addsuffix .c,$(addprefix $(GEN_DIR)/,$(GEN_FILES)))