sdlSscanf function
extern SDL_DECLSPEC int SDLCALL SDL_sscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, ...) SDL_SCANF_VARARG_FUNC(2)
Implementation
int sdlSscanf(String? text, String? fmt, Pointer<NativeType> arg2) {
final sdlSscanfLookupFunction = libSdl3.lookupFunction<
Int32 Function(
Pointer<Utf8> text, Pointer<Utf8> fmt, Pointer<NativeType> arg2),
int Function(Pointer<Utf8> text, Pointer<Utf8> fmt,
Pointer<NativeType> arg2)>('SDL_sscanf');
final textPointer = text != null ? text.toNativeUtf8() : nullptr;
final fmtPointer = fmt != null ? fmt.toNativeUtf8() : nullptr;
final result = sdlSscanfLookupFunction(textPointer, fmtPointer, arg2);
calloc.free(textPointer);
calloc.free(fmtPointer);
return result;
}