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
Updated formatting of documentation plus a little reorganization.
[cmake.git]
/
Tests
/
Simple
/
simpleCLib.c
blob
88fc33efc2af2252f05815bc3e14d705f6881291
1
#include <stdio.h>
2
3
int
FooBar
()
4
{
5
int
class
;
6
int
private
=
10
;
7
for
(
class
=
0
;
class
<
private
;
class
++ )
8
{
9
printf
(
"Count: %d/%d
\n
"
,
class
,
private
);
10
}
11
return
0
;
12
}