All Superinterfaces:
ICCompound, ICElement, ICGenericBreakable, ICGenericLoop, ICStatement

@Ser public interface ICForStm extends ICGenericLoop
C AST interface used to represent a standard for loop statement. A for loop is a pre-tested loop, that consists of an initializer statement, a test predicate, a post-iteration statement, and a body.

Example:

 for(initializer; predicate; poststm) {
     // body
 }