ref: 0a460e1722c50e31653359f8a86fe0b606d2b513
dir: /sys/src/libc/port/strchr.c/
#include <u.h> #include <libc.h> char* strchr(char *s, int c) { char c0 = c; char c1; if(c == 0) { while(*s++) ; return s-1; } while(c1 = *s++) if(c1 == c0) return s-1; return 0; }