summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/10041-Issue_3351.c
blob: 592fc51107905a1a250cbe042d6a1222c919bc1b (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

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