diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/one_liners.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/one_liners.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/one_liners.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/one_liners.c new file mode 100644 index 00000000..1f6e0d3e --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/one_liners.c @@ -0,0 +1,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++; }; +}
\ No newline at end of file |