sdlStrrev function

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

Implementation

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