| 578 | } |
| 579 | |
| 580 | robj *rdbLoadEncodedStringObject(rio *rdb) { |
| 581 | return (robj*)rdbGenericLoadStringObject(rdb,RDB_LOAD_ENC,NULL); |
| 582 | } |
| 583 | |
| 584 | /* Save a double value. Doubles are saved as strings prefixed by an unsigned |
| 585 | * 8 bit integer specifying the length of the representation. |
no test coverage detected