source: bootcd/isolinux/syslinux-6.03/com32/lib/memchr.c

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 240 bytes
Line 
1/*
2 * memchr.c
3 */
4
5#include <stddef.h>
6#include <string.h>
7
8void *memchr(const void *s, int c, size_t n)
9{
10    const unsigned char *sp = s;
11
12    while (n--) {
13        if (*sp == (unsigned char)c)
14            return (void *)sp;
15    }
16
17    return NULL;
18}
Note: See TracBrowser for help on using the repository browser.