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

Function itoa_buf

src/watcher/watcher.c:335–339  ·  view source on GitHub ↗

Format int to string for logging (poll thread only, one use per call). */

Source from the content-addressed store, hash-verified

333
334/* Format int to string for logging (poll thread only, one use per call). */
335static const char *itoa_buf(int v) {
336 static CBM_TLS char buf[CBM_SZ_32];
337 snprintf(buf, sizeof(buf), "%d", v);
338 return buf;
339}
340
341static void delete_cached_project_db(const char *project_name) {
342 if (!cbm_validate_project_name(project_name)) {

Callers 1

poll_projectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected