mb/google/brya: Create rull variant
[coreboot2.git] / src / lib / memchr.c
blob65440324afff0126cae8828f1d6c54939a37c8b9
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <string.h>
4 void *memchr(const void *s, int c, size_t n)
6 const unsigned char *sc = s;
7 while (n--) {
8 if (*sc == (unsigned char)c)
9 return (void *)sc;
10 sc++;
12 return NULL;