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

Function cbm_ht_has

src/foundation/hash_table.c:93–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93bool cbm_ht_has(const CBMHashTable *ht, const char *key) {
94 if (!ht || !key)
95 return false;
96 cbm_vt_itr itr = cbm_vt_get(&ht->vt, key);
97 return !cbm_vt_is_end(itr);
98}
99
100const char *cbm_ht_get_key(const CBMHashTable *ht, const char *key) {
101 if (!ht || !key)

Calls

no outgoing calls

Tested by

no test coverage detected