2002-03-20 16:19:00 -05:00
|
|
|
#include <stdio.h>
|
2002-03-29 11:12:46 -05:00
|
|
|
int testExtraStuff3();
|
|
|
|
int testExtraStuff();
|
|
|
|
int testExtraStuff2();
|
|
|
|
|
2002-07-30 16:19:39 -04:00
|
|
|
int test1(int ac, char* av[])
|
2002-03-20 16:19:00 -05:00
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!testExtraStuff2()) {
|
2002-03-29 11:12:46 -05:00
|
|
|
return -1;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (!testExtraStuff()) {
|
2002-03-29 11:12:46 -05:00
|
|
|
return -1;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (!testExtraStuff3()) {
|
2002-03-29 11:12:46 -05:00
|
|
|
return -1;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2002-03-20 16:19:00 -05:00
|
|
|
printf("test1\n");
|
2016-05-16 10:34:04 -04:00
|
|
|
for (int i = 0; i < ac; i++)
|
2002-03-20 16:19:00 -05:00
|
|
|
printf("arg %d is %s\n", ac, av[i]);
|
|
|
|
return 0;
|
|
|
|
}
|