1. NAME

strnchr - Find a character in a length limited string

2. SYNOPSIS

char * strnchr(const char *  s , size_t  count , int  c );

3. ARGUMENTS

s
    The string to be searched

count
    The number of characters to be searched

c
    The character to search for

4. COPYRIGHT