Handle pass.start event. */
| 252 | |
| 253 | /* Handle pass.start event. */ |
| 254 | static void on_pass_start(const char *line) { |
| 255 | char val[CBM_SZ_64] = {0}; |
| 256 | const char *pass = extract_kv(line, "pass", val, (int)sizeof(val)); |
| 257 | if (pass && strcmp(pass, "structure") == 0) { |
| 258 | (void)fprintf(s_out, "[1/9] Building file structure\n"); |
| 259 | (void)fflush(s_out); |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | /* Handle pass.timing event. */ |
| 264 | static void on_pass_timing(const char *line) { |
nothing calls this directly
no test coverage detected