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

Function itoa_buf

src/watcher/watcher.c:801–805  ·  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

799
800/* Format int to string for logging (poll thread only, one use per call). */
801static const char *itoa_buf(int v) {
802 static CBM_TLS char buf[CBM_SZ_32];
803 snprintf(buf, sizeof(buf), "%d", v);
804 return buf;
805}
806
807static bool watcher_unlink_cached_file(const char *project_name, const char *path,
808 const char *artifact) {

Callers 1

poll_projectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected