system method

int system(
  1. Pointer<Char> _Command
)

Implementation

int system(
  ffi.Pointer<ffi.Char> _Command,
) {
  return _system(
    _Command,
  );
}