ref: 80e484d564586d035af62709835cd6ed65a05d38 dir: /libc/runestrchr.c/
#include <u.h> #include <libc.h> Rune* runestrchr(Rune *s, Rune c) { Rune r; if(c == 0) while(*s++) ; else while((r = *s++) != c) if(r == 0) return 0; return s-1; }