summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/star-style.c
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-18 22:24:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-11-18 22:24:33 +0900
commit3b0c3b8206964b85bf3716c962d26dd15c4f285f (patch)
tree2f0973dbf96c2892d19a55b6f846f130e7399a48 /debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/star-style.c
parentff287d2f48d4f4253bf84f19bd7fe937b61ede45 (diff)
downloadextra-dependencies-3b0c3b8206964b85bf3716c962d26dd15c4f285f.tar.gz
extra-dependencies-3b0c3b8206964b85bf3716c962d26dd15c4f285f.zip
Remove uncrustify-trinity.HEADmaster
It is no longer necessary to maintain a customize trinity version. Upstream version can be used as is. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/star-style.c')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/star-style.c81
1 files changed, 0 insertions, 81 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/star-style.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/star-style.c
deleted file mode 100644
index aab9ccec..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/star-style.c
+++ /dev/null
@@ -1,81 +0,0 @@
-// gap ↘ |123456| ↙ gap
-static int *a;
-static unsigned int **b;
-static short int *c;
-static long int d;
-static int ***e;
-// gap ↗ |123456| ↖ gap
-
-// gap ↘ |12345678| ↙ gap
-int function_with_no_star_parameters (int parameter)
-// gap ↗ |12345678| ↖ gap
-{
- return 0;
-}
-
-// gap ↘ |12345678| ↙ gap
-int function_with_stars(int *f,
- unsigned int **g,
- short int *h,
- long int i,
- int ***j)
-// gap ↗ |12345678| ↖ gap
-{
-// gap ↘ |123456| ↙ gap
- int *k;
- unsigned int **l;
- short int *m;
- long int n;
- int ***o;
-// gap ↗ |123456| ↖ gap
- return 0;
-}
-
-// gap ↘ |12345678| ↙ gap
-int function_closer_than_16_lines_from_j(int *p,
- unsigned int **q,
- short int *r,
- long int s,
- int ***t)
-// gap ↗ |12345678| ↖ gap
-{
-// gap ↘ |123456| ↙ gap
- int *u;
- unsigned int **v;
- short int *w;
- long int x;
- int ***y;
-// gap ↗ |123456| ↖ gap
-
- /* The point of this comment is merely to make the
- * function longer than 16 lines.
- *
- * We're doing this to show that parameter alignment is
- * per parameter list, and that parameter lists from
- * multiple functions aren't lined up with each other.
- *
- * You can see that by noticing that function_with_stars and this
- * function don't have parameter lists aligned with each
- * other, and this function and the function below it are
- * too far away anyway.
- */
- return 0;
-}
-
-// gap ↘ |12345678| ↙ gap
-int more_than_16_lines_from_t(int *z,
- unsigned int **zz,
- short int *zzz,
- long int zzzz,
- int ***zzzzz)
-// gap ↗ |12345678| ↖ gap
-{
-// gap ↘ |123456| ↙ gap
- int *zzzzzz;
- unsigned int **zzzzzzz;
- short int *zzzzzzzz;
- long int zzzzzzzzz;
- int ***zzzzzzzzzz;
-// gap ↗ |123456| ↖ gap
- return 0;
-}