strcspn - get length of a complementary substring
#include <string.h> size_t strcspn(const char *s1, const char *s2);
The strcspn() function computes the length of the maximum initial segment of the string pointed to by s1 which consists entirely of bytes not from the string pointed to by s2.
The strcspn() function returns the length of the computed segment of the string pointed to by s1; no return value is reserved to indicate an error.
No errors are defined.
None.
None.
None.
strspn(), <string.h>.
Derived from Issue 1 of the SVID.