mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-28 00:50:05 +08:00
34 lines
241 B
C
34 lines
241 B
C
|
int f1(int x) {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int f2(int x)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int f3(
|
||
|
int x
|
||
|
) {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int f4(
|
||
|
int x,
|
||
|
int y
|
||
|
) {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int f5(int x,
|
||
|
int y)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
f6(int x, int y)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|