tolower method

int tolower(
  1. int _C
)

Implementation

int tolower(
  int _C,
) {
  return (_tolower_1 ??=
      _dylib.lookupFunction<_c_tolower, _dart_tolower>('tolower'))(
    _C,
  );
}