diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/c/beautifier-off.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/c/beautifier-off.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/c/beautifier-off.c b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/c/beautifier-off.c deleted file mode 100644 index 033179cb..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/c/beautifier-off.c +++ /dev/null @@ -1,32 +0,0 @@ - - -#define FOO(bar) create_a_really_long_identifier name(some_function(bar1 + bar2), bar3, bar4); - -/* *INDENT-OFF* */ - int foo[] = { - 1, 3, 5, - 3, 5, 7, - 5, 7, 9, - }; -/* *INDENT-ON* */ - -#define multilinemacro do { (x+5); } while (0); \ -printf("a multilinemacro"); \ -printf("a multilinemacro2"); - -int main(int argc, char *argv[]) -{ -/* *INDENT-OFF* */ - - int a, b; -a = 1; // stupid comment \ -b = 2; - -/* *INDENT-ON* */ -return(a+b); -} - -/* *INDENT-OFF* */ -int a; -/* *INDENT-ON* */ - |