repo.or.cz
/
cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
STYLE: Nightly Version update
[cmake.git]
/
Tests
/
TestDriver
/
test2.cxx
blob
69f0fff1746f9bd9769d935a259241a5dafb0677
1
#include <stdio.h>
2
int
test2
(
int
ac
,
char
*
av
[])
3
{
4
printf
(
"test2
\n
"
);
5
for
(
int
i
=
0
;
i
<
ac
;
i
++)
6
printf
(
"arg %d is %s
\n
"
,
ac
,
av
[
i
]);
7
return
0
;
8
}