1. NAME

strspn - Calculate the length of the initial substring of s which only contain letters in accept

2. SYNOPSIS

size_t strspn(const char *  s , const char *  accept );

3. ARGUMENTS

s
    The string to be searched

accept
    The string to search for

4. COPYRIGHT