First commit

This commit is contained in:
2025-12-03 17:15:57 +01:00
commit 1c54c8ae28
6 changed files with 787 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
.PHONY: all clean
ifeq ($(shell uname -s),Windows_NT)
EXT = .exe
else
EXT =
endif
all:
gcc -o test$(EXT) test.c url.c -Wall -Wextra
clean:
rm test test.exe