MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / strbuf_append_mem

Function strbuf_append_mem

deps/lua/src/strbuf.h:127–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125}
126
127static inline void strbuf_append_mem(strbuf_t *s, const char *c, int len)
128{
129 strbuf_ensure_empty_length(s, len);
130 memcpy(s->buf + s->length, c, len);
131 s->length += len;
132}
133
134static inline void strbuf_append_mem_unsafe(strbuf_t *s, const char *c, int len)
135{

Callers 3

json_append_numberFunction · 0.85
json_append_objectFunction · 0.85
json_append_dataFunction · 0.85

Calls 1

Tested by

no test coverage detected