Sign in
code
/
git
/
a8a773c28fa618be573be7bce05d37ac4d079a80
/
.
/
t
/
t7615
/
base.c
blob: c64abc593667cd2f4addb18564db1bcf180ae18f [
file
]
int
f
(
int
x
,
int
y
)
{
if
(
x
==
0
)
{
return
y
;
}
return
x
;
}
int
g
(
size_t
u
)
{
while
(
u
<
30
)
{
u
++;
}
return
u
;
}