2002-03-21 00:19:00 +03:00
|
|
|
#include <stdio.h>
|
2002-03-29 19:12:46 +03:00
|
|
|
int testExtraStuff3();
|
|
|
|
int testExtraStuff();
|
|
|
|
int testExtraStuff2();
|
|
|
|
|
2002-07-31 00:19:39 +04:00
|
|
|
int test1(int ac, char* av[])
|
2002-03-21 00:19:00 +03:00
|
|
|
{
|
2002-03-29 19:12:46 +03:00
|
|
|
if(!testExtraStuff2())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if(!testExtraStuff())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if(!testExtraStuff3())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-03-21 00:19:00 +03:00
|
|
|
printf("test1\n");
|
|
|
|
for(int i =0; i < ac; i++)
|
|
|
|
printf("arg %d is %s\n", ac, av[i]);
|
|
|
|
return 0;
|
|
|
|
}
|