popen method

Pointer<IO_FILE_> popen(
  1. Pointer<Int8> __command,
  2. Pointer<Int8> __modes
)

Implementation

ffi.Pointer<IO_FILE_> popen(
  ffi.Pointer<ffi.Int8> __command,
  ffi.Pointer<ffi.Int8> __modes,
) {
  return _popen(
    __command,
    __modes,
  );
}