ref: 0abc10c55a5366e6fdad4c775e5f18b39c14eec6
dir: /src/libc/string/memchr.c/
#include <string.h> #undef memchr void * memchr(const void *s, int c, size_t n) { const unsigned char *bp = s; while (n > 0 && *bp++ != c) --n; return (n == 0) ? NULL : bp-1; }