mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 22:10:32 +00:00
9 lines
155 B
C++
9 lines
155 B
C++
#include <stdio.h>
|
|
int test2(int ac, char*av[])
|
|
{
|
|
printf("test2\n");
|
|
for(int i =0; i < ac; i++)
|
|
printf("arg %d is %s\n", ac, av[i]);
|
|
return 0;
|
|
}
|