| 50 | return isatty(1) ? "\033[90m" : ""; |
| 51 | } |
| 52 | static inline const char *tf_reset(void) { |
| 53 | return isatty(1) ? "\033[0m" : ""; |
| 54 | } |
| 55 | |
| 56 | /* ── Test definition ───────────────────────────────────────────── */ |
| 57 |
no outgoing calls
no test coverage detected