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

Function cbm_config_get_bool

src/cli/cli.c:6675–6687  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6673}
6674
6675bool cbm_config_get_bool(cbm_config_t *cfg, const char *key, bool default_val) {
6676 const char *val = cbm_config_get(cfg, key, NULL);
6677 if (!val) {
6678 return default_val;
6679 }
6680 if (strcmp(val, "true") == 0 || strcmp(val, "1") == 0 || strcmp(val, "on") == 0) {
6681 return true;
6682 }
6683 if (strcmp(val, "false") == 0 || strcmp(val, "0") == 0 || strcmp(val, "off") == 0) {
6684 return false;
6685 }
6686 return default_val;
6687}
6688
6689int cbm_config_get_int(cbm_config_t *cfg, const char *key, int default_val) {
6690 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