| 2363 | * take care of a given Redis return type. */ |
| 2364 | |
| 2365 | char *ldbRedisProtocolToHuman_Int(sds *o, char *reply) { |
| 2366 | char *p = strchr(reply+1,'\r'); |
| 2367 | *o = sdscatlen(*o,reply+1,p-reply-1); |
| 2368 | return p+2; |
| 2369 | } |
| 2370 | |
| 2371 | char *ldbRedisProtocolToHuman_Bulk(sds *o, char *reply) { |
| 2372 | char *p = strchr(reply+1,'\r'); |
no test coverage detected