ref: 14b919faf8e69fb8c06bb397b5a87c2b9f00c3bb
dir: /sys/src/libc/port/memchr.c/
#include <u.h>
#include <libc.h>
void*
memchr(void *ap, int c, ulong n)
{
uchar *sp;
sp = ap;
c &= 0xFF;
while(n > 0) {
if(*sp++ == c)
return sp-1;
n--;
}
return 0;
}