strupr method

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

Implementation

ffi.Pointer<ffi.Int8> strupr(
  ffi.Pointer<ffi.Int8> _String,
) {
  return (_strupr_1 ??=
      _dylib.lookupFunction<_c_strupr, _dart_strupr>('strupr'))(
    _String,
  );
}