whisper_free method

void whisper_free(
  1. Pointer<whisper_context> ctx
)

Frees all allocated memory

Implementation

void whisper_free(
  ffi.Pointer<whisper_context> ctx,
) {
  return _whisper_free(
    ctx,
  );
}