1#include <wchar.h>
2
3int wcscasecmp_l(const wchar_t *l, const wchar_t *r, locale_t locale)
4{
5 return wcscasecmp(l, r);
6}