1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-25 13:29:41 +00:00
cc65/testcode/lib/arg-test.c
cuz aa5a3035ef New test program arg-test.c
git-svn-id: svn://svn.cc65.org/cc65/trunk@3003 b7a2c559-68d2-44c3-8de9-860c34a00d81
2004-05-02 00:53:39 +00:00

17 lines
246 B
C

#include <stdio.h>
#include <stdlib.h>
int main (int argc, char* argv[])
{
int I;
printf ("argc: %d\n", argc);
for (I = 0; I < argc; ++I) {
printf ("argv[%2d]: \"%s\"\n", I, argv[I]);
}
return EXIT_SUCCESS;
}