1. NAME

strcspn - Calculate the length of the initial substring of s which does not contain letters in reject

2. SYNOPSIS

size_t strcspn(const char *  s , const char *  reject );

3. ARGUMENTS

s
    The string to be searched

reject
    The string to avoid

4. COPYRIGHT