op_rec process_op(void)
{
	/* Produce operator descriptor */
	op_rec o;
	o.operator = (current_token == PLUSOP)? PLUS: MINUS;
	return o;
}

Author: Ming-I Hsieh (Powered by FreeBSD, c2html, gimp, vim, gmake)