Compare two Unicode strings in code point order. See u_strCompare for details.
- Parameters:
-
| s1 | A string to compare. |
| s2 | A string to compare. |
- Returns:
- a negative/zero/positive integer corresponding to whether the first string is less than/equal to/greater than the second one in code point order ICU 2.0
Definition at line 933 of file ustring.c.
References FALSE, and TRUE.
{
return uprv_strCompare(s1, -1, s2, -1, FALSE, TRUE);
}