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

Function bootstrap_has_help_after

src/daemon/bootstrap.c:58–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58static bool bootstrap_has_help_after(int argc, char *const argv[], int start) {
59 for (int i = start; argv && i < argc; i++) {
60 if (bootstrap_arg_is(argv[i], "--help") || bootstrap_arg_is(argv[i], "-h")) {
61 return true;
62 }
63 }
64 return false;
65}
66
67static bool bootstrap_worker_fingerprint_valid(const char *fingerprint) {
68 if (!fingerprint || strlen(fingerprint) != 64U) {

Callers 1

cbm_daemon_process_roleFunction · 0.85

Calls 1

bootstrap_arg_isFunction · 0.85

Tested by

no test coverage detected