1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-28 00:50:05 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/c/func.c

34 lines
241 B
C
Raw Normal View History

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;
}