sdlIconvClose function

int sdlIconvClose(
  1. Pointer<SdlIconvT> cd
)
extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd)

Implementation

int sdlIconvClose(Pointer<SdlIconvT> cd) {
  final sdlIconvCloseLookupFunction = libSdl2.lookupFunction<
      Int32 Function(Pointer<SdlIconvT> cd),
      int Function(Pointer<SdlIconvT> cd)>('SDL_iconv_close');
  return sdlIconvCloseLookupFunction(cd);
}