| 125 | } |
| 126 | |
| 127 | StrArr *ReadProcessLines(Str *prog, StrArr *args) { |
| 128 | Str *output = ReadProcess(prog, args); |
| 129 | return output->splitLines(); |
| 130 | } |
| 131 | |
| 132 | int WriteProcess(Str *prog, StrArr *args, Str *data) { |
| 133 | Str *command = BuildCommand(prog, args); |