towlower method

int towlower(
  1. int _C
)

Implementation

int towlower(
  int _C,
) {
  return (_towlower ??=
      _dylib.lookupFunction<_c_towlower, _dart_towlower>('towlower'))(
    _C,
  );
}