added utf-8 string support

This commit is contained in:
cozis
2022-03-13 00:40:10 +01:00
parent 6017f99b07
commit ee68905f92
9 changed files with 476 additions and 16 deletions
+2
View File
@@ -14,6 +14,7 @@ done
mkdir temp
mkdir temp/utils
gcc -c src/utils/utf8.c -o temp/utils/utf8.o $FLAGS
gcc -c src/utils/hash.c -o temp/utils/hash.o $FLAGS
gcc -c src/utils/stack.c -o temp/utils/stack.o $FLAGS
gcc -c src/utils/error.c -o temp/utils/error.o $FLAGS
@@ -81,6 +82,7 @@ ar rcs build/libnoja-runtime.a \
build/libnoja-objects.a
gcc src/main.c \
temp/utils/utf8.o \
temp/utils/hash.o \
temp/utils/stack.o \
temp/utils/source.o \