void program() {
    // get next token
    next();
    while (token > 0) {
        global_declaration();
    }
}
示例#2
0
文件: simple.c 项目: Knight-X/simplcc
void program(){
    next();
    while (token > 0) {
        global_declaration();
    }
}; void enum_declaration(){