SPC  Version 0.9.5
 All Files Functions Groups Pages
The continue statement

Within loops you can use the continue statement to skip to the top of the next iteration of the loop without executing any of the code in the loop that follows the continue statement.

continue;

Here is an example of how to use the continue statement:

while (x<100) {
ch = get_char();
if (ch != 's')
continue;
process(ch);
}