home  

mod_infinite_loop

Properties

  Category: Code modifying options (non-whitespace)
      Type: numeric [0 .. 5]
   Default: 0

Description

Syntax to use for infinite loops.

0: Leave syntax alone (default)
1: Rewrite as `for(;;)`
2: Rewrite as `while(true)`
3: Rewrite as ...`while(true);`
4: Rewrite as `while(1)`
5: Rewrite as ...`while(1);`

Infinite loops that do not already match one of these syntaxes are ignored.
Other options that affect loop formatting will be applied after transforming
the syntax.

Examples

raw CPP code mod_infinite_loop=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; }
 

Not the best code for this option? See how to improve the .uds file used to generate these examples.