]> git.sur5r.net Git - cc65/blob - testcode/lib/arg-test.c
Changed the PC-Engine's configuration file, so that the command line can build 8K...
[cc65] / testcode / lib / arg-test.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 int main (int argc, char* argv[])
5 {
6     int I;
7
8     printf ("argc:     %d\n", argc);
9     for (I = 0; I < argc; ++I) {
10         printf ("argv[%2d]: \"%s\"\n", I, argv[I]);
11     }
12
13     printf ("\n");
14     getchar ();
15     return EXIT_SUCCESS;
16 }
17
18
19