| 2427 | } |
| 2428 | |
| 2429 | char *ldbRedisProtocolToHuman_Bool(sds *o, char *reply) { |
| 2430 | char *p = strchr(reply+1,'\r'); |
| 2431 | if (reply[1] == 't') |
| 2432 | *o = sdscatlen(*o,"#true",5); |
| 2433 | else |
| 2434 | *o = sdscatlen(*o,"#false",6); |
| 2435 | return p+2; |
| 2436 | } |
| 2437 | |
| 2438 | char *ldbRedisProtocolToHuman_Double(sds *o, char *reply) { |
| 2439 | char *p = strchr(reply+1,'\r'); |
no test coverage detected