| 119 | } |
| 120 | |
| 121 | bool isStdOutRedirected() |
| 122 | { |
| 123 | // isatty returns a nonzero value if the descriptor is associated with a character device. Otherwise, isatty returns 0. |
| 124 | return isatty(fileno(stdout)) != 0; |
| 125 | } |
| 126 | |
| 127 | static bool hasTerminalVT100SupportImpl() |
| 128 | { |
no outgoing calls
no test coverage detected