| 361 | } |
| 362 | |
| 363 | void leveldb_writebatch_append(leveldb_writebatch_t* destination, |
| 364 | const leveldb_writebatch_t* source) { |
| 365 | destination->rep.Append(source->rep); |
| 366 | } |
| 367 | |
| 368 | leveldb_options_t* leveldb_options_create() { return new leveldb_options_t; } |
| 369 |