gguf_find_key method

int gguf_find_key(
  1. Pointer<gguf_context> ctx,
  2. Pointer<Char> key
)

Implementation

int gguf_find_key(
  ffi.Pointer<gguf_context> ctx,
  ffi.Pointer<ffi.Char> key,
) {
  return _gguf_find_key(
    ctx,
    key,
  );
}