pop() { if (level == 0) return (-1); level--; ioclrtoeol(T_POS); strcpy(T_STR, ""); T_RULE = -1; T_CH = -1; return (0); }
int pop(void) { if (level == 0) return (-1); level--; ioclrtoeol(T_POS); strlcpy(T_STR, "", sizeof T_STR); T_RULE = -1; T_CH = -1; return (0); }