| 151 | } |
| 152 | |
| 153 | bool enableVT100TerminalMode() |
| 154 | { |
| 155 | if (!isStdOutRedirected()) |
| 156 | { |
| 157 | return false; |
| 158 | } |
| 159 | |
| 160 | if (!hasTerminalVT100Support()) |
| 161 | { |
| 162 | return false; |
| 163 | } |
| 164 | |
| 165 | return true; |
| 166 | } |
| 167 | |
| 168 | std::vector<std::string> getCmdLineVector(int argc, const char** argv) |
| 169 | { |
no test coverage detected