[Previous] [Contents] [Index] [Next]

Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

wcspbrk()

Find the first wide character in a string that's in a given character set

Synopsis:

#include <wchar.h>

wchar_t * wcspbrk( 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 wcspbrk() function locates the first occurrence in the string pointed to by ws1 of any wide character from the string pointed to by ws2.

Returns:

A pointer to the located character, or NULL if no character from ws2 occurs in ws1.

Classification:

ANSI, POSIX 1003.1

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

See also:

memchr(), strchr(), strcspn(), strpbrk(), strrchr(), strspn(), strstr(), strtok(), strtok_r(), wcschr(), wcscspn(), wcsrchr(), wcsspn(), wcsstr(), wcstok()


[Previous] [Contents] [Index] [Next]