is_wctype method

int is_wctype(
  1. int _C,
  2. int _Type
)

Implementation

int is_wctype(
  int _C,
  int _Type,
) {
  return (_is_wctype ??=
      _dylib.lookupFunction<_c_is_wctype, _dart_is_wctype>('is_wctype'))(
    _C,
    _Type,
  );
}