nl_var_def_blk_end_func_top
Category: Blank line options Type: numeric [0 .. 16] Default: 0
The minimum number of blank lines after a block of variable definitions at the top of a function body. If any preprocessor directives appear between the opening brace of the function and the variable block, then it is considered as not at the top of the function.Newlines are added before trailing preprocessor directives, if any exist. 0: No change (default).
raw CPP code | nl_var_def_blk_end_func_top=0 | nl_var_def_blk_end_func_top=5 | nl_var_def_blk_end_func_top=10 | nl_var_def_blk_end_func_top=16 | nl nl_var_def_blk_end_func_top=0 |
---|---|---|---|---|---|
/*-- 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; } | /*-- 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; } | /*-- 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; } |
Not the best code for this option? See how to improve the .uds file used to generate these examples.