added unicode support

This commit is contained in:
nova
2025-07-12 15:00:34 +02:00
parent d96046ac44
commit c9c00f4930
4 changed files with 48 additions and 69 deletions

View File

@ -1,12 +1,12 @@
all:
gcc ./main.c -std=c89 -o th -lncurses -ltinfo -Wall -O2
gcc ./main.c -std=c89 -o th -lncursesw -ltinfow -Wall
d:
gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo -Wall -O2 && gdb --tui ./th
gcc -g -std=c89 ./main.c -o th -lncursesw -ltinfow -Wall && gdb --tui ./th
v:
gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo -O3 && valgrind --leak-check=full --track-origins=yes --show-leak-kinds=all --log-fd=9 9>>valgrind.log ./th
rel:
gcc ./main.c -std=c89 -o th -lncurses -ltinfo -Wall -O2 -flto
gcc ./main.c -std=c89 -o th -lncursesw -ltinfow -Wall -O2 -flto