1. NAME

memchr - Find a character in an area of memory.

2. SYNOPSIS

void * memchr(const void *  s , int  c , size_t  n );

3. ARGUMENTS

s
    The memory area

c
    The byte to search for

n
    The size of the area.

4. DESCRIPTION

returns the address of the first occurrence of c, or NULL if c is not found

5. COPYRIGHT