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

11 lines
132 B
C
Raw Normal View History

2024-08-21 14:17:26 +08:00
void foo(int x)
{
if (x > 10) {
return;
} else if (x < -10) {
x = -10;
} else {
x = -x;
}
}