MCPcopy Create free account
hub / github.com/antirez/botlib / sdscat

Function sdscat

sds.c:412–414  ·  view source on GitHub ↗

Append the specified null termianted C string to the sds string 's'. * * After the call, the passed sds string is no longer valid and all the * references must be substituted with the new pointer returned by the call. */

Source from the content-addressed store, hash-verified

410 * After the call, the passed sds string is no longer valid and all the
411 * references must be substituted with the new pointer returned by the call. */
412sds sdscat(sds s, const char *t) {
413 return sdscatlen(s, t, strlen(t));
414}
415
416/* Append the specified sds 't' to the existing sds 's'.
417 *

Callers 6

makeHTTPGETCallFunction · 0.85
makeHTTPGETCallOptFunction · 0.85
makeGETBotRequestFunction · 0.85
sdscatvprintfFunction · 0.85
sdsjoinFunction · 0.85
sdsTestFunction · 0.85

Calls 1

sdscatlenFunction · 0.85

Tested by

no test coverage detected