strcspn method

int strcspn(
  1. Pointer<Int8> _Str,
  2. Pointer<Int8> _Control
)

Implementation

int strcspn(
  ffi.Pointer<ffi.Int8> _Str,
  ffi.Pointer<ffi.Int8> _Control,
) {
  return (_strcspn ??=
      _dylib.lookupFunction<_c_strcspn, _dart_strcspn>('strcspn'))(
    _Str,
    _Control,
  );
}