Clean up some #defines
[blerg.git] / database.h
index 7c90308..ed9707d 100644 (file)
@@ -26,9 +26,11 @@ struct blerg {
        int data_size;
 };
 
+int blerg_exists(const char *);
 struct blerg *blerg_open(const char *);
 int blerg_close(struct blerg *);
 int blerg_store(struct blerg *, const char *, int);
 int blerg_fetch(struct blerg *, int, char **, int *);
+uint64_t blerg_get_record_count(struct blerg *);
 
 #endif //_DATABASE_H