add code/C/packtest.c

This commit is contained in:
tTh
2024-03-27 11:05:42 +01:00
parent 0818f87582
commit 66bc3d19c4
3 changed files with 122 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
# exemples pour le chapitre sur le C
# new Sat Feb 11 12:06:34 CET 2023
all: no-op slowprint fgets-simple
all: no-op slowprint fgets-simple packtest
no-op: no-op.c Makefile
gcc -Wall $< -o $@
@@ -15,3 +15,7 @@ fgets-simple: fgets-simple.c Makefile
demo-strtok: demo-strtok.c Makefile
gcc -Wall $< -o $@
# added Wed Mar 27 10:01:41 UTC 2024
packtest: packtest.c
gcc -Wall $< -o $@