예제 #1
0
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(){