1. NAME

memchr_inv - Find an unmatching character in an area of memory.

2. SYNOPSIS

void * memchr_inv(const void *  start , int  c , size_t  bytes );

3. ARGUMENTS

start
    The memory area

c
    Find a character other than c

bytes
    The size of the area.

4. DESCRIPTION

returns the address of the first character other than c, or NULL if the whole buffer contains just c.

5. COPYRIGHT