Count the wide characters at the beginning of a string that are in a given character set
#include <wchar.h> size_t wcsspn( const wchar_t * ws1, const wchar_t * ws2 );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The wcsspn() function returns the length of the initial segment of the string pointed to by ws1 consisting entirely of wide characters from the string pointed to by ws2. The terminating NUL isn't considered to be part of ws2.
The length of the segment.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | Yes |
Signal handler | Yes |
Thread | Yes |