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

10 lines
120 B
C
Raw Normal View History

2021-04-17 22:47:02 +02:00
#define FOO(x) do { \
x = x + 1; \
x = x / 2; \
} while (x > 0);
void foo(int x)
{
FOO(x);
}