first commit

This commit is contained in:
Your Name 2025-01-24 20:30:34 +03:00
commit 3dcd9520d5
7 changed files with 543 additions and 0 deletions

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
CC?=cc
CFLAGS?=-pedantic -Wall -Wextra -s -Os
all:
$(CC) $(CFLAGS) img.c -o 8img
clean:
rm 8img