toupper method

int toupper(
  1. int _C
)

Implementation

int toupper(
  int _C,
) {
  return (_toupper_1 ??=
      _dylib.lookupFunction<_c_toupper, _dart_toupper>('toupper'))(
    _C,
  );
}