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

Function cbm_str_contains_raw

tests/test_log.c:20–22  ·  view source on GitHub ↗

Simple strstr wrapper used by log tests (avoids circular dep on str_util) */

Source from the content-addressed store, hash-verified

18
19/* Simple strstr wrapper used by log tests (avoids circular dep on str_util) */
20static inline bool cbm_str_contains_raw(const char *s, const char *sub) {
21 return strstr(s, sub) != NULL;
22}
23
24static char log_buf[4096];
25static char sink_buf[4096];

Callers 1

test_log.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected