summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/align-struct-init.c
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-01 12:38:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-01 12:38:43 +0900
commitb67b7f2b784c7105e88a5e639d9d84736ae2cbc1 (patch)
tree0fd16d439c681c07d57d7f0d544c7582e04c3a31 /debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/align-struct-init.c
parentc0a6f1b84c84749908961579b84513fd9f9d9eac (diff)
downloadextra-dependencies-b67b7f2b784c7105e88a5e639d9d84736ae2cbc1.tar.gz
extra-dependencies-b67b7f2b784c7105e88a5e639d9d84736ae2cbc1.zip
uncrustify-trinity: updated based on upstream version 0.78.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/align-struct-init.c')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/align-struct-init.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/align-struct-init.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/align-struct-init.c
deleted file mode 100644
index 084994ff..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/align-struct-init.c
+++ /dev/null
@@ -1,48 +0,0 @@
-
-const char *token_names[] =
-{
- [CT_POUND] = "POUND",
- [CT_PREPROC] = "PREPROC",
- [CT_PREPROC_BODY] = "PREPROC_BODY",
- [CT_PP] = "PP",
- [CT_ELIPSIS] = "ELIPSIS",
- [CT_NAMESPACE]= "NAMESPACE",
- [CT_NEW] = "NEW",
- [CT_OPERATOR] = "OPERATOR",
- [CT_THROW] = "THROW",
- [CT_TRY] = "TRY",
- [CT_USING] = "USING",
- [CT_PAREN_OPEN] = "PAREN_OPEN",
-};
-
-
-int main(int argc, char *argv[])
-{
- struct junk a[] = {
- { "version", 0, 0, 0},
- {"file", 1, 150, 'f'},
- {"config", 1, 0, 'c'},
- {"parsed", 25, 0, 'p'},
- { NULL, 0, 0, 0}
- };
-}
-
- color_t colors[] = {
- {"red",{255,0,0}},{"blue",{0,255,0}},
- {"green",{0,0,255}},{"purple",{255,255,0}},
- };
-
- struct foo_t bar = {
- .name = "bar",
- .age = 21
-};
-
-
-
-struct foo_t bars[] = {
- [0] = { .name = "bar",
- .age = 21 },
- [1] = { .name = "barley",
- .age = 55 },
-};
-