wcscspn method

int wcscspn(
  1. Pointer<Uint16> _String,
  2. Pointer<Uint16> _Control
)

Implementation

int wcscspn(
  ffi.Pointer<ffi.Uint16> _String,
  ffi.Pointer<ffi.Uint16> _Control,
) {
  return (_wcscspn ??=
      _dylib.lookupFunction<_c_wcscspn, _dart_wcscspn>('wcscspn'))(
    _String,
    _Control,
  );
}