Locates the first occurrence of multibyte characters or code points in a string.
Standard C Library (libc.a)
#include <mbstr.h>
char *mbspbrk( MbString1, MbString2)
char *MbString1, *MbString2;
The mbspbrk subroutine locates the first occurrence in the string pointed to by the MbString1 parameter, of any character of the string pointed to by the MbString2 parameter.
MbString1 | Points to the string being searched. |
MbString2 | Pointer to a set of characters in a string. |
The mbspbrk subroutine returns a pointer to the character. Otherwise, it returns a null character if no character from the string pointed to by the MbString2 parameter occurs in the string pointed to by the MbString1 parameter.
The mbschr Subroutine, mbsrchr Subroutine, mbstomb Subroutine, wcspbrk subroutine, wcswcs subroutine.
, Subroutines, Example Programs, and Libraries in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
National Language Support Overview in AIX 5L Version 5.2 National Language Support Guide and Reference.