3 <<strspn>>---find initial match
10 size_t strspn(const char *<[s1]>, const char *<[s2]>);
13 This function computes the length of the initial segment of
14 the string pointed to by <[s1]> which consists entirely of
15 characters from the string pointed to by <[s2]> (excluding the
16 terminating null character).
19 <<strspn>> returns the length of the segment found.
24 <<strspn>> requires no supporting OS subroutines.
33 strspn (const char *s1
,