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