summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/Issue_3351.c
blob: 889d731aa48cef8b534d1e100e89472173008a8e (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

void foo(unsigned flags, unsigned COMMENT) {
	/* Discard file comment if any */
	if ((flags & COMMENT) != 0) {
	    while (getchar() != 0) /* null */ ;
	}
}