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

mbstrirchr()

Search backwards for a multibyte character in a string, ignoring case

Synopsis:

char *mbstrirchr( char const *string_base, 
                  char const *start_char, 
                  char const *mbchar, 
                  int *count )

Library:

ph

Description:

The mbstrirchr() function searches backwards from start_char to string_base, inclusive, for a character that matches mbchar, regardless of case. If such a match occurs, count (if provided) is set to the number of characters spanned to find the match.

Returns:

A pointer to the beginning of the matching character within string_base, or NULL if no match is found.

Classification:

Photon

Safety:
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

mbstrchr(), mbstrichr(), mbstrnchr(), mbstrnichr(), mbstrrchr()

Unicode Multilingual Support in the Photon Programmer's Guide


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