Update on bugzilla stuff

Richard Henderson rth@redhat.com
Tue Jan 1 16:33:00 GMT 2002


On Tue, Jan 01, 2002 at 07:21:08PM -0500, Daniel Berlin wrote:
> for (p = str; *p != ';' && *p; *p++);
> if (!*p)
> 	return 0;

Perhaps

  if (strchr (str, ';') == NULL)
    return 0;


r~



More information about the Gcc mailing list