amiga-ixemul/wchar/wcscoll.c

8 lines
103 B
C

#include <wchar.h>
int wcscoll(const wchar_t *p, const wchar_t *q)
{
//TODO:
return wcscmp(p, q);
}