summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/one_liners.c
blob: 1f6e0d3e2eaee8fc208489b4c4dbcbd89d147f93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int baz() { return 0; }

int main()
{
int a, b;
int f[2] = { 1, 2 };
enum foo { BAR = 15 };
if (1) { a++; b++; }
while (0) { a++; b++; }
do { a++; b++; } while (0);
for (;;) { a++; b++; };
}