| 82 | } |
| 83 | |
| 84 | std::string windowsify_path(std::string path) { |
| 85 | for (auto& c : path) { |
| 86 | if (c == '/') { |
| 87 | c = '\\'; |
| 88 | } |
| 89 | } |
| 90 | return path; |
| 91 | } |
| 92 | |
| 93 | int exec_cmd(std::string const& cmd, int log_num, std::string const& path) { |
| 94 | std::array<char, 128> buffer; |