ref: 14b919faf8e69fb8c06bb397b5a87c2b9f00c3bb
dir: /sys/src/ape/lib/ap/gen/strchr.c/
#include <string.h>
char*
strchr(const char *s, int c)
{
char c1;
if(c == 0) {
while(*s++)
;
return s-1;
}
while(c1 = *s++)
if(c1 == c)
return s-1;
return 0;
}