3 <<strcspn>>---count characters not in string
9 size_t strcspn(const char *<[s1]>, const char *<[s2]>);
12 This function computes the length of the initial part of
13 the string pointed to by <[s1]> which consists entirely of
14 characters <[NOT]> from the string pointed to by <[s2]>
15 (excluding the terminating null character).
18 <<strcspn>> returns the length of the substring found.
21 <<strcspn>> is ANSI C.
23 <<strcspn>> requires no supporting OS subroutines.
29 strcspn (const char *s1
,