void program() {
    // get next token
    next();
    while (token > 0) {
        global_declaration();
    }
}
Example #2
0
void program(){
    next();
    while (token > 0) {
        global_declaration();
    }
}; void enum_declaration(){