sdlStrrev function

Pointer<Int8> sdlStrrev(
  1. Pointer<Int8> str
)
extern SDL_DECLSPEC char * SDLCALL SDL_strrev(char *str)

Implementation

Pointer<Int8> sdlStrrev(Pointer<Int8> str) {
  final sdlStrrevLookupFunction = libSdl3.lookupFunction<
      Pointer<Int8> Function(Pointer<Int8> str),
      Pointer<Int8> Function(Pointer<Int8> str)>('SDL_strrev');
  return sdlStrrevLookupFunction(str);
}