expr_rec process_id(void)
{
	expr_rec t;

	/*
	 * Declare ID and build a
	 * corresponding semantic record.
	 */
	check_id(token_buffer);
	t.kind = IDEXPR;
	strcpy(t.name, token_buffer);
	return t;
}

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