Locates a character or code point in a multibyte character string.
Standard C Library (libc.a)
#include <mbstr.h>
char *mbsrchr( MbString, MbCharacter)
char *MbString;
int MbCharacter;
The mbschr subroutine locates the last occurrence of the MbCharacter parameter in the string pointed to by the MbString parameter. The MbCharacter parameter is a multibyte character represented as an integer. The terminating null character is considered to be part of the string.
Item | Description |
---|---|
MbString | Points to a multibyte character string. |
MbCharacter | Specifies a multibyte character represented as an integer. |
The mbsrchr subroutine returns a pointer to the MbCharacter parameter within the multibyte character string. It returns a null pointer if MbCharacter does not occur in the string.