aboutsummaryrefslogtreecommitdiff
path: root/test_mini/speudo_code
diff options
context:
space:
mode:
Diffstat (limited to 'test_mini/speudo_code')
-rw-r--r--test_mini/speudo_code15
1 files changed, 0 insertions, 15 deletions
diff --git a/test_mini/speudo_code b/test_mini/speudo_code
deleted file mode 100644
index ef776ce..0000000
--- a/test_mini/speudo_code
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-is_space
-
-#include <stdio.h>
-int main(int argc, char **argv, char **envp)
-{
- printf("ARGV:\n");
- for (int i = 0; i < argc; i++)
- printf("[%d] %s\n", i, argv[i]);
- printf("\nENV:\n");
- for (int i = 0; envp[i] != NULL && i < 10; i++)
- printf("[%d] %s\n", i, envp[i]);
- return 0;
-}