cmt_multi_first_len_minimum
Category: Comment modification options Type: numeric [1 .. 20] Default: 4
For multi-line comments with a '*' lead, remove leading spaces if the first and last lines of the comment are the same length AND if the length is bigger as the first_len minimum. Default: 4
raw CPP code | cmt_multi_first_len_minimum=4 |
---|---|
/*-- this is the default sample --*/ int main(int argc, char** argv){ int n = 0; if(arg>=1){ printf("Hello %s!\n", argv[1]); n=strlen(argv[1]); }else{ puts("Hello world!"); } return n; } | /*-- this is the default sample --*/ int main(int argc, char** argv){ int n = 0; if(arg>=1){ printf("Hello %s!\n", argv[1]); n=strlen(argv[1]); }else{ puts("Hello world!"); } return n; } |
need to be tuned with some values in [1 .. 20]
Not the best code for this option? See how to improve the .uds file used to generate these examples.