| 2383 | } |
| 2384 | |
| 2385 | char *ldbRedisProtocolToHuman_Status(sds *o, char *reply) { |
| 2386 | char *p = strchr(reply+1,'\r'); |
| 2387 | |
| 2388 | *o = sdscatrepr(*o,reply,p-reply); |
| 2389 | return p+2; |
| 2390 | } |
| 2391 | |
| 2392 | char *ldbRedisProtocolToHuman_MultiBulk(sds *o, char *reply) { |
| 2393 | char *p = strchr(reply+1,'\r'); |
no test coverage detected