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(
    _Str,
    _Control,
  );
}