myCompress method

Pointer<TVALUE> myCompress(
  1. Pointer<Char> str,
  2. Pointer<Char> path
)

Implementation

ffi.Pointer<TVALUE> myCompress(
  ffi.Pointer<ffi.Char> str,
  ffi.Pointer<ffi.Char> path,
) {
  return _myCompress(
    str,
    path,
  );
}