strpbrk method

Pointer<Int8> strpbrk(
  1. Pointer<Int8> __s,
  2. Pointer<Int8> __charset
)
inherited

Implementation

ffi.Pointer<ffi.Int8> strpbrk(
  ffi.Pointer<ffi.Int8> __s,
  ffi.Pointer<ffi.Int8> __charset,
) {
  return _strpbrk(
    __s,
    __charset,
  );
}