Refactoring in C, currently in development

This commit is contained in:
2023-06-04 12:35:42 +02:00
parent 9733003e9e
commit e3508eee23
7 changed files with 108 additions and 22 deletions

8
build.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
set -xe
CFLAGS=$(pkg-config --cflags ncurses libcurl)
LIBS=$(pkg-config --libs ncurses libcurl)
gcc ${CFLAGS} -o main main.c giteaAPI.c ${LIBS}