repo.or.cz
/
ppn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
README: rename
[ppn.git]
/
tests
/
inputs
/
eqv
/
max
/
1.c
blob
6aca4b3c6f5dc7f4c36f0b77923dece9c9305a6e
1
int
f2
(
int
,
int
,
int
);
2
3
int
main
()
4
{
5
int
i
,
j
;
6
int
out
;
7
8
out
=
0
;
9
10
for
(
i
=
0
;
i
<
100
; ++
i
) {
11
j
=
max
(
5
,
i
);
12
if
(
j
<=
i
)
13
out
=
f2
(
out
,
i
,
j
);
14
}
15
16
return
out
;
17
}