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

Function sw

internal/cbm/iris_export_xml.c:30–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28 return p;
29}
30static bool sw(const char *p, const char *end, const char *tag) {
31 size_t n = strlen(tag);
32 return (size_t)(end - p) >= n && memcmp(p, tag, n) == 0;
33}
34static const char *find_s(const char *p, const char *end, const char *needle) {
35 size_t n = strlen(needle);
36 while (p + n <= end) {

Callers 2

elem_contentFunction · 0.85
transcode_classFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected