blob: a890dceada9cae8efa4304ef0a5b8e1fad94cad5 [file] [log] [blame]
Gabe Black1025f3a2011-09-16 02:18:56 -07001#include <string.h>
2void *memchr(const void *s, int c, size_t n)
3{
4 const unsigned char *sc = s;
5 while (n--) {
6 if (*sc == (unsigned char)c)
7 return (void *)sc;
8 sc++;
9 }
10 return NULL;
11}