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

Function cbm_ht_get

src/foundation/hash_table.c:84–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82}
83
84void *cbm_ht_get(const CBMHashTable *ht, const char *key) {
85 if (!ht || !key)
86 return NULL;
87 cbm_vt_itr itr = cbm_vt_get(&ht->vt, key);
88 if (cbm_vt_is_end(itr))
89 return NULL;
90 return itr.data->val;
91}
92
93bool cbm_ht_has(const CBMHashTable *ht, const char *key) {
94 if (!ht || !key)

Callers 15

kt_register_cross_defFunction · 0.85
cbm_run_kotlin_lsp_crossFunction · 0.85
cbm_sem_random_indexFunction · 0.85
corpus_get_or_addFunction · 0.85
batch_resolve_one_docFunction · 0.85
build_src_entryFunction · 0.85
cbm_sem_corpus_idfFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected