length = StrConvert(locale,string,buffer,bufferSize,type);
D0 A0 A1 A2 D0 D1
ULONG StrConvert(struct Locale *,STRPTR,APTR,ULONG,ULONG);
This function transforms the passed string and places the resulting into the supplied buffer. No more than bufferSize bytes are copied into the buffer.
The transformation is such that if the C strcmp() function is applied to two transformed strings, it returns a value corresponding to the result returned by the
StrnCmp() function applied to the two original strings.
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 bugs in the Collate table used for SC_COLLATE1 and SC_COLLATE2 transformations (See the
StrnCmp description for details). And it did not restore the stack pointer if an unknown type was specified. Fixed in V46.