spacevim/bundle/nvim-treesitter-0.9.1/tests/indent/c/func.c

34 lines
241 B
C
Raw Normal View History

2024-08-21 14:17:26 +08:00
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;
}