mz_path_resolve method

int mz_path_resolve(
  1. Pointer<Int8> path,
  2. Pointer<Int8> target,
  3. int max_target
)

Implementation

int mz_path_resolve(
  ffi.Pointer<ffi.Int8> path,
  ffi.Pointer<ffi.Int8> target,
  int max_target,
) {
  return _mz_path_resolve(
    path,
    target,
    max_target,
  );
}