Exemplo n.º 1
0
/* <identificador> → ID #procesar_id */
void identificador(struct reg_expr* preg) {
	
	match(ID);
	*preg = procesar_id();
}
Exemplo n.º 2
0
void identificador(reg_expr * reg){
	match(ID);
	*reg = procesar_id(); // #procesar_id
}