- added a new function to the database interface, cdb_close_cursor(). always
[citadel.git] / citadel / database.h
index b4dbc6f4725b10c7875c101ea2c3af2c4d4867a4..ba74d70a5bc13fc7622b22cbe2f9a403fed2e27c 100644 (file)
@@ -8,6 +8,7 @@ struct cdbdata *cdb_fetch (int cdb, void *key, int keylen);
 void cdb_free (struct cdbdata *cdb);
 void cdb_rewind (int cdb);
 struct cdbdata *cdb_next_item (int cdb);
+void cdb_close_cursor(int cdb);
 void cdb_begin_transaction(void);
 void cdb_end_transaction(void);
 void cdb_allocate_tsd(void);