--- /dev/null
+#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;
+}
+
+
+
Test programs for the runtime lib:
----------------------------------
+arg-test.c - test program for passing arguments to main()
clock.c - test program for clock() and CLOCKS_PER_SEC
cprintf.c - test program for cprintf \n and \r operators
cursor.c - test the cursor() function