plan9fox/sys/src/ape/lib/ap/gen/memchr.c
Ori Bernstein d4bc9052be Turn on warnings when building libap.
For ape, we never enabled warnings in cflags.
Turning it on brings up a lot of warnings. Most are noise,
but a few caught unused variables and trunctaions of pointers.
to smaller integers (int, long).

A few warnings remain.
2019-06-21 10:00:58 -07:00

17 lines
200 B
C

#include <string.h>
void*
memchr(const void *ap, int c, size_t n)
{
unsigned char *sp;
sp = (unsigned char*)ap;
c &= 0xFF;
while(n > 0) {
if(*sp++ == c)
return sp-1;
n--;
}
return 0;
}