Add a tool to place data into the image an resize it

This commit is contained in:
logicog
2025-07-29 12:08:32 +02:00
parent d60a3786bb
commit f36235f411
2 changed files with 155 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
CC = gcc
all: injector fileadder
clean:
rm *.o
injector: injector.c
gcc $^ -o $@
fileadder: fileadder.c
gcc $^ -o $@