MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ldbRedisProtocolToHuman_Int

Function ldbRedisProtocolToHuman_Int

app/redis-6.2.6/src/scripting.c:2342–2346  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2340 * take care of a given Redis return type. */
2341
2342char *ldbRedisProtocolToHuman_Int(sds *o, char *reply) {
2343 char *p = strchr(reply+1,'\r');
2344 *o = sdscatlen(*o,reply+1,p-reply-1);
2345 return p+2;
2346}
2347
2348char *ldbRedisProtocolToHuman_Bulk(sds *o, char *reply) {
2349 char *p = strchr(reply+1,'\r');

Callers 1

ldbRedisProtocolToHumanFunction · 0.85

Calls 2

strchrFunction · 0.85
sdscatlenFunction · 0.85

Tested by

no test coverage detected