nvim-treesitter/tests/indent/c/func.c

34 lines
241 B
C
Raw Normal View History

2021-04-17 22:47:02 +02: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)
2021-04-17 22:47:02 +02:00
{
return 1;
}
int
f6(int x, int y)
{
return 1;
}