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

Function free_import_map

src/pipeline/pass_calls.c:185–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185static void free_import_map(const char **keys, const char **vals, int count) {
186 if (keys) {
187 for (int i = 0; i < count; i++) {
188 free((void *)keys[i]);
189 }
190 free((void *)keys);
191 }
192 if (vals) {
193 free((void *)vals);
194 }
195}
196
197/* Handle a route registration call: create Route node + HANDLES edge. */
198static void handle_route_registration(cbm_pipeline_ctx_t *ctx, const CBMCall *call,

Callers 2

cbm_pipeline_pass_callsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected