flush_cstr method

void flush_cstr(
  1. Pointer<Char> str
)

Free allocated memory of string.

Implementation

void flush_cstr(
  ffi.Pointer<ffi.Char> str,
) {
  return _flush_cstr(
    str,
  );
}