summaryrefslogtreecommitdiffstats
path: root/Tests/Wrapping/Wrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Wrapping/Wrap.c')
-rw-r--r--Tests/Wrapping/Wrap.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/Wrapping/Wrap.c b/Tests/Wrapping/Wrap.c
new file mode 100644
index 0000000..fda49d3
--- /dev/null
+++ b/Tests/Wrapping/Wrap.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+int main(int argc, char* argv[])
+{
+ int cc;
+ for ( cc = 1; cc < argc; cc ++ )
+ {
+ printf("%s ", argv[cc]);
+ }
+ printf("\n");
+ return 0;
+}