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

Function cli_first_nonspace_is_brace

src/main.c:655–660  ·  view source on GitHub ↗

True if the first non-whitespace byte of s is '{' (raw-JSON detection). */

Source from the content-addressed store, hash-verified

653
654/* True if the first non-whitespace byte of s is '{' (raw-JSON detection). */
655static bool cli_first_nonspace_is_brace(const char *s) {
656 while (*s == ' ' || *s == '\t' || *s == '\n' || *s == '\r') {
657 s++;
658 }
659 return *s == '{';
660}
661
662static char *main_local_cli_daemon_execute(const char *tool_name, const char *args_json);
663

Callers 1

run_cliFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected