flush_cstr_array method

void flush_cstr_array(
  1. Pointer<Pointer<Char>> str_array,
  2. int length
)

Wipe all data in 2D allocated memory of string.

Implementation

void flush_cstr_array(
  ffi.Pointer<ffi.Pointer<ffi.Char>> str_array,
  int length,
) {
  return _flush_cstr_array(
    str_array,
    length,
  );
}