demo de strtok

This commit is contained in:
tTh
2023-09-01 12:37:36 +02:00
parent db14adeb86
commit 9d08631b32
3 changed files with 57 additions and 0 deletions

View File

@@ -2,6 +2,8 @@
# exemples pour le chapitre sur le C
# new Sat Feb 11 12:06:34 CET 2023
all: no-op slowprint fgets-simple
no-op: no-op.c Makefile
gcc -Wall $< -o $@
@@ -11,3 +13,5 @@ slowprint: slowprint.c Makefile
fgets-simple: fgets-simple.c Makefile
gcc -Wall $< -o $@
demo-strtok: demo-strtok.c Makefile
gcc -Wall $< -o $@