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

Function ub_app

internal/cbm/iris_export_xml.c:126–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124 b->buf[0] = '\0';
125}
126static void ub_app(UdlBuf *b, const char *s) {
127 if (!b->buf || !s)
128 return;
129 size_t n = strlen(s);
130 if (b->pos + (int)n + 1 >= b->cap)
131 return;
132 memcpy(b->buf + b->pos, s, n);
133 b->pos += (int)n;
134 b->buf[b->pos] = '\0';
135}
136
137static void emit_header(UdlBuf *b, const char *cs, const char *ce) {
138 char name[MAX_NAME];

Callers 7

emit_headerFunction · 0.85
emit_methodFunction · 0.85
emit_propertyFunction · 0.85
emit_parameterFunction · 0.85
emit_indexFunction · 0.85
emit_xdataFunction · 0.85
transcode_classFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected