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

Function cbm_agent_registry_env_path

src/cli/cli.c:7744–7753  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7742} cbm_agent_registry_context_t;
7743
7744static const char *cbm_agent_registry_env_path(const char *env_name, const char *home,
7745 char *resolved, size_t resolved_size) {
7746 char value[CLI_BUF_1K];
7747 resolved[0] = '\0';
7748 const char *configured = cbm_safe_getenv(env_name, value, sizeof(value), NULL);
7749 return configured && configured[0] &&
7750 cbm_expand_user_path(home, configured, resolved, resolved_size)
7751 ? resolved
7752 : NULL;
7753}
7754
7755static bool cbm_agent_registry_path_exists(const char *path, const void *context) {
7756 (void)context;

Callers 1

Calls 2

cbm_safe_getenvFunction · 0.85
cbm_expand_user_pathFunction · 0.85

Tested by

no test coverage detected