summaryrefslogtreecommitdiff
path: root/com32/lib/memchr.c
blob: c5c5fa29632672a8735465667b297c38549c3707 (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;
}