| 106 | } |
| 107 | |
| 108 | int rdbSaveType(rio *rdb, unsigned char type) { |
| 109 | return rdbWriteRaw(rdb,&type,1); |
| 110 | } |
| 111 | |
| 112 | /* Load a "type" in RDB format, that is a one byte unsigned integer. |
| 113 | * This function is not only used to load object types, but also special |
no test coverage detected