mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-11 07:50:07 -04:00
11 lines
117 B
C
11 lines
117 B
C
/**
|
|
* Function foo
|
|
* @param[out] x output
|
|
* @param[in] x input
|
|
*/
|
|
void foo(int *x, int y) {
|
|
*x = y;
|
|
}
|
|
|
|
/*
|
|
*
|