mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-27 12:00:04 +08:00
34 lines
241 B
C
Vendored
34 lines
241 B
C
Vendored
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;
|
|
}
|