Flush pending \r line if needed. */
| 83 | |
| 84 | /* Flush pending \r line if needed. */ |
| 85 | static void flush_carriage(void) { |
| 86 | if (atomic_load(&s_needs_newline)) { |
| 87 | (void)fprintf(s_out, "\n"); |
| 88 | atomic_store(&s_needs_newline, 0); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | /* Handle pipeline.discover event. */ |
| 93 | static void on_discover(const char *line) { |
no outgoing calls
no test coverage detected