mz_os_rename method

int mz_os_rename(
  1. Pointer<Int8> source_path,
  2. Pointer<Int8> target_path
)

Implementation

int mz_os_rename(
  ffi.Pointer<ffi.Int8> source_path,
  ffi.Pointer<ffi.Int8> target_path,
) {
  return _mz_os_rename(
    source_path,
    target_path,
  );
}