MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / on_pass_start

Function on_pass_start

src/cli/progress_sink.c:116–123  ·  view source on GitHub ↗

Handle pass.start event. */

Source from the content-addressed store, hash-verified

114
115/* Handle pass.start event. */
116static 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. */
126static void on_pass_timing(const char *line) {

Callers

nothing calls this directly

Calls 1

extract_kvFunction · 0.85

Tested by

no test coverage detected