D.10.4 Comparing UTF-8 strings
- Function: int utf8_symcmp (unsigned char *a, unsigned char *b)
Compares first UTF-8 characters from a and b.
- Function: int utf8_symcasecmp (unsigned char *a, unsigned char *b)
Compares first UTF-8 characters from a and b, ignoring the case.
- Function: int utf8_strcasecmp (unsigned char *a, unsigned char *b)
Compares the two UTF-8 strings a and b, ignoring the case of the characters.
- Function: int utf8_strncasecmp (unsigned char *a, unsigned char *b, size_t maxlen)
Compares at most maxlen first characters from the two UTF-8 strings a and b, ignoring the case of the characters.
- Function: int utf8_wc_strcmp (const unsigned *a, const unsigned *b)
Compare the two wide character strings a and b.
- Function: int utf8_wc_strncmp (const unsigned *a, const unsigned *b, size_t n)
Compares at most n first characters from the wide character strings a and b.
- Function: int utf8_wc_strcasecmp (const unsigned *a, const unsigned *b)
Compares the two wide character strings a and b, ignoring the case of the characters.
- Function: int utf8_wc_strncasecmp (const unsigned *a, const unsigned *b, size_t n)
Compares at most first n characters of the two wide character strings a and b, ignoring the case.