| 564 | } |
| 565 | |
| 566 | robj *rdbLoadEncodedStringObject(rio *rdb) { |
| 567 | return rdbGenericLoadStringObject(rdb,RDB_LOAD_ENC,NULL); |
| 568 | } |
| 569 | |
| 570 | /* Save a double value. Doubles are saved as strings prefixed by an unsigned |
| 571 | * 8 bit integer specifying the length of the representation. |
no test coverage detected