Handle pass.start event. */
| 114 | |
| 115 | /* Handle pass.start event. */ |
| 116 | static void on_pass_start(const char *line) { |
| 117 | char val[CBM_SZ_64] = {0}; |
| 118 | const char *pass = extract_kv(line, "pass", val, (int)sizeof(val)); |
| 119 | if (pass && strcmp(pass, "structure") == 0) { |
| 120 | (void)fprintf(s_out, "[1/9] Building file structure\n"); |
| 121 | (void)fflush(s_out); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | /* Handle pass.timing event. */ |
| 126 | static void on_pass_timing(const char *line) { |
nothing calls this directly
no test coverage detected