Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
TestDriver
/
test2.cxx
blob: 08d1e6f724cda9fea7e44f72944dd8100f12dca0 [
file
] [
log
] [
blame
]
#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
;
}