sdlWcslen function
extern SDL_DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr)
Implementation
int sdlWcslen(Pointer<Int16> wstr) {
final sdlWcslenLookupFunction = libSdl3.lookupFunction<
Uint32 Function(Pointer<Int16> wstr),
int Function(Pointer<Int16> wstr)>('SDL_wcslen');
return sdlWcslenLookupFunction(wstr);
}