Like rdbLoadBinaryDoubleValue() but single precision. */
| 667 | |
| 668 | /* Like rdbLoadBinaryDoubleValue() but single precision. */ |
| 669 | int rdbLoadBinaryFloatValue(rio *rdb, float *val) { |
| 670 | if (rioRead(rdb,val,sizeof(*val)) == 0) return -1; |
| 671 | memrev32ifbe(val); |
| 672 | return 0; |
| 673 | } |
| 674 | |
| 675 | /* Save the object type of object "o". */ |
| 676 | int rdbSaveObjectType(rio *rdb, robj_roptr o) { |
no test coverage detected