9 lines
165 B
C++
Raw Normal View History

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