ref: 8b7c2f498b3780bf1d26b050b9e231d079e8092f
dir: /sys/src/libc/port/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;
}