User`s manual

Dynamic C Users Manual digi.com 193
12. KEYWORDS
A keyword is a reserved word in C that represents a basic C construct. It cannot be used for any other pur-
pose.
abandon
Used in single-user cofunctions, abandon{} must be the first statement in the body of the cofunction.
The statements inside the curly braces will be executed only if the cofunction is forcibly abandoned and if
a call to loophead() is made in main() before calling the single-user cofunction. See
Samples\Cofunc\Cofaband.c for an example of abandonment handling.
abort
Jumps out of a costatement.
for(;;){
costate {
...
if( condition ) abort;
}
...
}