| 2450 | } |
| 2451 | |
| 2452 | char *ldbRedisProtocolToHuman_Bool(sds *o, char *reply) { |
| 2453 | char *p = strchr(reply+1,'\r'); |
| 2454 | if (reply[1] == 't') |
| 2455 | *o = sdscatlen(*o,"#true",5); |
| 2456 | else |
| 2457 | *o = sdscatlen(*o,"#false",6); |
| 2458 | return p+2; |
| 2459 | } |
| 2460 | |
| 2461 | char *ldbRedisProtocolToHuman_Double(sds *o, char *reply) { |
| 2462 | char *p = strchr(reply+1,'\r'); |
no test coverage detected