1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-09 20:00:06 +08:00
SpaceVim/bundle/nvim-treesitter-0.9.1/tests/indent/c/cond.c

11 lines
132 B
C

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