| 44 | return isatty(1) ? "\033[32m" : ""; |
| 45 | } |
| 46 | static inline const char *tf_red(void) { |
| 47 | return isatty(1) ? "\033[31m" : ""; |
| 48 | } |
| 49 | static inline const char *tf_dim(void) { |
| 50 | return isatty(1) ? "\033[90m" : ""; |
| 51 | } |
no outgoing calls
no test coverage detected