blob: 097a2cc44372578fb62af70938ca70506e283ee3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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)
*/
|