summaryrefslogtreecommitdiff
path: root/rushs/evalexpr/repeat/repeat.c
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-10-11 22:19:00 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-10-11 22:19:00 +0200
commit73c2b00a10c5786ddeeacc915e233fd4df1c9321 (patch)
treee299ea4e8ac161b2b21170172ff8f182c1c3fe1a /rushs/evalexpr/repeat/repeat.c
parentc9b6b9a5ca082fe7c1b6f58d7713f785a9eb6a5c (diff)
fix: evalexpr & tinyprintf contenaient toute la piscine
Diffstat (limited to 'rushs/evalexpr/repeat/repeat.c')
-rw-r--r--rushs/evalexpr/repeat/repeat.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/rushs/evalexpr/repeat/repeat.c b/rushs/evalexpr/repeat/repeat.c
deleted file mode 100644
index 06d0b43..0000000
--- a/rushs/evalexpr/repeat/repeat.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char **argv)
-{
- if (argc != 3)
- return 1;
-
- for (int i = 0; i < argv[2][0] - '0'; i++)
- puts(argv[1]);
- return 0;
-}