nvim-treesitter/lua/tests/indent/c/cond.c
2021-04-23 21:21:38 +02:00

10 lines
132 B
C

void foo(int x)
{
if (x > 10) {
return;
} else if (x < -10) {
x = -10;
} else {
x = -x;
}
}