#include <time.h> or #define NWL_EXCLUDE_TIME #include <stdio.h> or #define NWL_EXCLUDE_FILE #include <nwlocale.h>size_t NWAPI NWLstrxfrm (char NWFAR
string1, char NWFAR
string2, size_t numChars);
NWLstrxfrm transforms string2, and places the results in string1.
If you apply strcmp to two transformed strings, it returns a value greater than, equal to, or less than zero, corresponding to the result of NWLstrcoll applied to the same two original strings.
NWLstrxfrm returns a 0 for any of the following reasons:
string2 was NULL numCharswas '0' Collation table not initialized Any combination of the above
NWLstrxfrm places no more than numChars into string1. If numChars is zero, string2 is allowed to be NULL.
NWLstrxfrm is used in place of NWLstrcoll when multiple comparisons of the same string are necessary. This should provide a performance advantage.
Internationalization