#include "string.h" unsigned int strcspn( char *str1, char *str2 ); The function strcspn() returns the index of the first character in str1 that matches any of the characters in str2. Related topics: strrchr strstr
unsigned int strcspn( char *str1, char *str2 );
The function strcspn() returns the index of the first character in str1 that matches any of
the characters in str2.