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

9 lines
110 B
C
Raw Normal View History

2021-04-17 22:47:02 +02:00
/**
* Function foo
* @param[out] x output
* @param[in] x input
*/
void foo(int *x, int y) {
*x = y;
}