memchr method

Pointer<Void> memchr(
  1. Pointer<Void> __s,
  2. int __c,
  3. int __n
)

Implementation

ffi.Pointer<ffi.Void> memchr(
  ffi.Pointer<ffi.Void> __s,
  int __c,
  int __n,
) {
  return _memchr(
    __s,
    __c,
    __n,
  );
}