| 152 | } |
| 153 | |
| 154 | bool TColors::CalcIsTTY(FILE* file) { |
| 155 | if (GetEnv("ENFORCE_TTY")) { |
| 156 | return true; |
| 157 | } |
| 158 | |
| 159 | #if defined(_unix_) |
| 160 | return isatty(fileno(file)); |
| 161 | #else |
| 162 | Y_UNUSED(file); |
| 163 | return false; |
| 164 | #endif |
| 165 | } |
| 166 | |
| 167 | TColors::TColors(FILE* f) |
| 168 | : IsTTY_(true) |