The Photon libraries provide multibyte string functions that will be useful if you're using multibyte-character strings.
These functions must be used instead of the usual 8-bit character functions such as strlen().
| Entry | Description | 
|---|---|
| mbstrblen() | Find the number of multibyte characters in part of a string | 
| mbstrchr() | Search for a multibyte character in a string | 
| mbstrlen() | Find the length of a multibyte-character string | 
| mbstrnchr() | Search for a multibyte character in part of a string | 
| mbstrncmp() | Compare part of a multibyte-character string | 
| mbstrnlen() | Find the number of bytes used by a multibyte-character string | 
| mbstrrchr() | Search backwards for a multibyte character in a string |