sdlWcsncasecmp function

int sdlWcsncasecmp(
  1. Pointer<Int16> str1,
  2. Pointer<Int16> str2,
  3. int len
)
extern DECLSPEC int SDLCALL SDL_wcsncasecmp(const wchar_t *str1, const wchar_t *str2, size_t len)

Implementation

int sdlWcsncasecmp(Pointer<Int16> str1, Pointer<Int16> str2, int len) {
  final sdlWcsncasecmpLookupFunction = libSdl2.lookupFunction<
      Int32 Function(Pointer<Int16> str1, Pointer<Int16> str2, Uint32 len),
      int Function(Pointer<Int16> str1, Pointer<Int16> str2,
          int len)>('SDL_wcsncasecmp');
  return sdlWcsncasecmpLookupFunction(str1, str2, len);
}