truncate method

int truncate(
  1. Pointer<Char> __file,
  2. int __length
)

Implementation

int truncate(
  ffi.Pointer<ffi.Char> __file,
  int __length,
) {
  return _truncate(
    __file,
    __length,
  );
}