also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
7 lines
120 B
C
7 lines
120 B
C
#include <wchar.h>
|
|
|
|
int wcscasecmp_l(const wchar_t *l, const wchar_t *r, locale_t locale)
|
|
{
|
|
return wcscasecmp(l, r);
|
|
}
|