Replies: 1 comment
-
please, create a new Issue, provide your input file, the config and the expected output file |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I would like to format an array init like this:
const char firmware_ver[] = {
( digit10_1( FW_MAJOR ) + '0' ),
( digit10_0( FW_MAJOR ) + '0' ), '.',
( digit10_1( FW_MINOR ) + '0' ),
( digit10_0( FW_MINOR ) + '0' ), '.',
( digit10_1( FW_PATCH ) + '0' ),
( digit10_0( FW_PATCH ) + '0' ), '\0'};
I tried several settings but I uncrustify give me a crazy results with strange tabs:

What options should I check?
Thanks!
PS: i attach my current config file
uncrustify_config.txt
Beta Was this translation helpful? Give feedback.
All reactions