bsearch method

Pointer<Void> bsearch(
  1. Pointer<Void> __key,
  2. Pointer<Void> __base,
  3. int __nmemb,
  4. int __size,
  5. __compar_fn_t __compar,
)

Implementation

ffi.Pointer<ffi.Void> bsearch(
  ffi.Pointer<ffi.Void> __key,
  ffi.Pointer<ffi.Void> __base,
  int __nmemb,
  int __size,
  __compar_fn_t __compar,
) {
  return _bsearch(
    __key,
    __base,
    __nmemb,
    __size,
    __compar,
  );
}