strrev method

Pointer<Int8> strrev(
  1. Pointer<Int8> _String
)

Implementation

ffi.Pointer<ffi.Int8> strrev(
  ffi.Pointer<ffi.Int8> _String,
) {
  return (_strrev_1 ??=
      _dylib.lookupFunction<_c_strrev, _dart_strrev>('strrev'))(
    _String,
  );
}