| 2360 | } |
| 2361 | |
| 2362 | char *ldbRedisProtocolToHuman_Status(sds *o, char *reply) { |
| 2363 | char *p = strchr(reply+1,'\r'); |
| 2364 | |
| 2365 | *o = sdscatrepr(*o,reply,p-reply); |
| 2366 | return p+2; |
| 2367 | } |
| 2368 | |
| 2369 | char *ldbRedisProtocolToHuman_MultiBulk(sds *o, char *reply) { |
| 2370 | char *p = strchr(reply+1,'\r'); |
no test coverage detected