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

Function parse_auto_answer

src/cli/cli.c:6969–6978  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6967}
6968
6969static void parse_auto_answer(int argc, char **argv) {
6970 for (int i = 0; i < argc; i++) {
6971 if (strcmp(argv[i], "-y") == 0 || strcmp(argv[i], "--yes") == 0) {
6972 g_auto_answer = AUTO_YES;
6973 }
6974 if (strcmp(argv[i], "-n") == 0 || strcmp(argv[i], "--no") == 0) {
6975 g_auto_answer = AUTO_NO;
6976 }
6977 }
6978}
6979
6980static bool prompt_yn(const char *question) {
6981 if (g_auto_answer == AUTO_YES) {

Callers 3

cbm_cmd_installFunction · 0.85
cbm_cmd_uninstallFunction · 0.85
cbm_cmd_updateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected