1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#if 0 #include <wchar.h> int wcscoll(const wchar_t * s1, const wchar_t * s2) { /* wchar_t *collated_s1 = s1; wchar_t *collated_s2 = s2; */ /* wcsxfrm */ return wcscmp(s1, s2); } /* STDC(199409) */ #endif