Add dstr_t type

This commit is contained in:
2023-06-18 21:40:36 +01:00
parent 0095d8fe61
commit 57fe5ab1b7
5 changed files with 284 additions and 9 deletions

View File

@@ -5,6 +5,10 @@ CFLAGS="-g -Wall -Werror -pedantic -Iinclude"
SRC="src/main.c"
OUT=main
# DSTRING
CFLAGS+=" -Iinclude/dstring"
SRC+=" src/dstring/*.c"
# LEXER
CFLAGS+=" -Iinclude/lexer"
SRC+=" src/lexer/*.c"