| 47 | return isatty(1) ? "\033[31m" : ""; |
| 48 | } |
| 49 | static inline const char *tf_dim(void) { |
| 50 | return isatty(1) ? "\033[90m" : ""; |
| 51 | } |
| 52 | static inline const char *tf_reset(void) { |
| 53 | return isatty(1) ? "\033[0m" : ""; |
| 54 | } |
no outgoing calls
no test coverage detected