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

Function cbm_ht_get

src/foundation/hash_table.c:104–111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102}
103
104void *cbm_ht_get(const CBMHashTable *ht, const char *key) {
105 if (!ht || !key)
106 return NULL;
107 cbm_vt_itr itr = cbm_vt_get(&ht->vt, key);
108 if (cbm_vt_is_end(itr))
109 return NULL;
110 return itr.data->val;
111}
112
113bool cbm_ht_has(const CBMHashTable *ht, const char *key) {
114 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