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

Function cbm_config_get_bool

src/cli/cli.c:6511–6523  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6509}
6510
6511bool cbm_config_get_bool(cbm_config_t *cfg, const char *key, bool default_val) {
6512 const char *val = cbm_config_get(cfg, key, NULL);
6513 if (!val) {
6514 return default_val;
6515 }
6516 if (strcmp(val, "true") == 0 || strcmp(val, "1") == 0 || strcmp(val, "on") == 0) {
6517 return true;
6518 }
6519 if (strcmp(val, "false") == 0 || strcmp(val, "0") == 0 || strcmp(val, "off") == 0) {
6520 return false;
6521 }
6522 return default_val;
6523}
6524
6525int cbm_config_get_int(cbm_config_t *cfg, const char *key, int default_val) {
6526 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