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