summaryrefslogtreecommitdiff
path: root/com32/lib/memchr.c
blob: d641c8641fef396e7a1cb8a8fabf846af80802d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * memchr.c
 */

#include <stddef.h>
#include <string.h>

void *memchr(const void *s, int c, size_t n)
{
    const unsigned char *sp = s;

    while (n--) {
	if (*sp == (unsigned char)c)
	    return (void *)sp;
    }

    return NULL;
}