use_form_feed_no_more_as_whitespace_character
Category: Use or Do not Use options Type: boolean [false, true] Default: false
If true: the form feed character is removed from the list of whitespace characters. See https://en.cppreference.com/w/cpp/string/byte/isspace.
raw CPP code | use_form_feed_no_more_as_whitespace_character=false | use_form_feed_no_more_as_whitespace_character=true |
---|---|---|
/*-- 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.