Flush pending \r line if needed. */
| 221 | |
| 222 | /* Flush pending \r line if needed. */ |
| 223 | static void flush_carriage(void) { |
| 224 | if (atomic_load(&s_needs_newline)) { |
| 225 | (void)fprintf(s_out, "\n"); |
| 226 | atomic_store(&s_needs_newline, 0); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | /* Handle pipeline.discover event. */ |
| 231 | static void on_discover(const char *line) { |
no outgoing calls
no test coverage detected