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

Function cbm_config_get_bool

src/cli/cli.c:6532–6544  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6530}
6531
6532bool cbm_config_get_bool(cbm_config_t *cfg, const char *key, bool default_val) {
6533 const char *val = cbm_config_get(cfg, key, NULL);
6534 if (!val) {
6535 return default_val;
6536 }
6537 if (strcmp(val, "true") == 0 || strcmp(val, "1") == 0 || strcmp(val, "on") == 0) {
6538 return true;
6539 }
6540 if (strcmp(val, "false") == 0 || strcmp(val, "0") == 0 || strcmp(val, "off") == 0) {
6541 return false;
6542 }
6543 return default_val;
6544}
6545
6546int cbm_config_get_int(cbm_config_t *cfg, const char *key, int default_val) {
6547 const char *val = cbm_config_get(cfg, key, NULL);

Callers 5

auto_watch_enabledFunction · 0.85
maybe_auto_indexFunction · 0.85
test_cli.cFile · 0.85

Calls 1

cbm_config_getFunction · 0.85

Tested by

no test coverage detected