strspn method

int strspn(
  1. Pointer<Int8> __s,
  2. Pointer<Int8> __accept
)

Implementation

int strspn(
  ffi.Pointer<ffi.Int8> __s,
  ffi.Pointer<ffi.Int8> __accept,
) {
  return _strspn(
    __s,
    __accept,
  );
}