2008-10-12 18:41:06 +02:00
|
|
|
#include <stdio.h>
|
2016-07-09 11:21:54 +02:00
|
|
|
int subdir_test3(int ac, char* av[])
|
2008-10-12 18:41:06 +02:00
|
|
|
{
|
|
|
|
printf("test3\n");
|
2016-07-09 11:21:54 +02:00
|
|
|
for (int i = 0; i < ac; i++)
|
2008-10-12 18:41:06 +02:00
|
|
|
printf("arg %d is %s\n", ac, av[i]);
|
|
|
|
return 0;
|
|
|
|
}
|