[Previous] [Contents] [Next]

wcsspn()

Find one string inside another

Synopsis:

#include <wchar.h>

size_t wcsspn( const wchar_t * ws1,
               const wchar_t * ws2 );

Library:

libc

Description:

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.

Returns:

The length of the segment.

Classification:

ANSI

Safety:
Cancellation point No
Interrupt handler Yes
Signal handler Yes
Thread Yes

See also:

"Searching and sorting functions," "String manipulation functions," and "Wide-character functions" in the summary of functions chapter.


[Previous] [Contents] [Next]