aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/comment.c
blob: b32de821839513d7001eb28c4f7d3abd8e7c5ceb (plain) (blame)
1
2
3
4
5
6
7
8
/**
 * Function foo
 * @param[out] x output
 * @param[in] x input
 */
void foo(int *x, int y) {
    *x = y;
}