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

11 lines
132 B
C
Raw Normal View History

2021-04-17 22:47:02 +02:00
void foo(int x)
{
if (x > 10) {
return;
} else if (x < -10) {
x = -10;
} else {
x = -x;
}
}