free_c_string method

void free_c_string(
  1. Pointer<Pointer<Char>> p
)

释放由 Rust 分配的 C 字符串

Implementation

void free_c_string(ffi.Pointer<ffi.Pointer<ffi.Char>> p) {
  return _free_c_string(p);
}