diff options
Diffstat (limited to 'src/common/db.h')
-rw-r--r-- | src/common/db.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/db.h b/src/common/db.h index eb6318869..eaa1ca13d 100644 --- a/src/common/db.h +++ b/src/common/db.h @@ -609,6 +609,7 @@ struct DBMap { #define stridb_alloc(opt,maxlen) db_alloc(__FILE__,__LINE__,DB_ISTRING,(opt),(maxlen)) #define db_destroy(db) ( (db)->destroy((db),NULL) ) // Other macros +#define db_clear(db) ( (db)->clear(db,NULL) ) #define db_iterator(db) ( (db)->iterator(db) ) #define dbi_first(dbi) ( (dbi)->first(dbi,NULL) ) #define dbi_last(dbi) ( (dbi)->last(dbi,NULL) ) |