| 2340 | * take care of a given Redis return type. */ |
| 2341 | |
| 2342 | char *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 | |
| 2348 | char *ldbRedisProtocolToHuman_Bulk(sds *o, char *reply) { |
| 2349 | char *p = strchr(reply+1,'\r'); |
no test coverage detected