The function of strcspn is
Reveal answer
Fill a bubble to check yourself
The function of strcspn is
Returns the first position in a string that contains a character not in another string
Matches one string in another using glob style matching
Returns the position of the character that's lowest in the ASCII set in a given string
None of the Above
strcspn() returns the length of the initial segment of the first string that does NOT contain any characters from the second string - effectively finding the first position with a character not in the other string. It does not perform glob matching or find ASCII minimum positions.