result = StrnCmp(locale,string1,string2,length,type);
D0 A0 A1 A2 D0 D1
LONG StrnCmp(struct Locale *,STRPTR,STRPTR,LONG,ULONG);
Compares string1 to string2 according to the collation information provided by the locale and returns an integer greater than, equal to, or less than zero, accordingly as the string pointed to by string1 is greater than, equal to, or less than the string pointed to by string2.
The length parameter specifies how many characters to compare, or if the length is specified as -1 then the strings are compared until a NULL is encountered.
The type parameter dictates how the comparison is to be performed.
Prior to V46, the builtin default routine (it can be replaced by the default language driver or, since V46, by the default charset driver) had the following bugs in the Collate table used for SC_COLLATE1 and SC_COLLATE2 comparisons:
'{' -> 'a'
'|' -> 'b'
'}' -> 'c'
'~' -> 'd'
DEL -> 'e'
0x80-0x9F -> 0xE0-0xFF
'¤' -> 'g'
'¥' -> 'h'
'¦' -> 'i'
'§' -> 'S'
'¨' -> 'j'
'©' -> 'k'
'ª' -> 'l'
'¬' -> 'm'
'' -> 'n'
'®' -> 'o'
'¯' -> 'p'
'°' -> 'q'
'±' -> 'r'
'²' -> 's'
'³' -> 't'
'´' -> 'u'
'µ' -> 'v'
'¶' -> 'w'
'·' -> 'x'
'¸' -> 'y'
'¹' -> 'z'
'º' -> '{'
'¼' -> '|'
'½' -> '}'
'¾' -> '~'
'Ð' -> 'D'
'Þ' -> 'P'
'ß' -> 'Y'
'ð' -> 'D'
'þ' -> 'P'
Fixed in V46, now these characters are not transformed except:
'¤' -> '$' currency -> dollar
'¥' -> '$' yen -> dollar
'¦' -> '|' broken bar -> vertical bar
'' -> '-' soft hyphen -> hyphen-minus
'²' -> '2' superscript 2 -> 2
'³' -> '3' superscript 3 -> 3
'´' -> '\'' acute accent -> apostrophe
'¹' -> '1' superscript 1 -> 1
'ð' -> 'Ð' small eth -> capital eth
'þ' -> 'Þ' small thorn -> capital thorn