summaryrefslogtreecommitdiffstats
path: root/src/dbbase.h
blob: 56f92706056ffa778c902cfb0953a02fc46dff71 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef DB_BASE_H
#define DB_BASE_H

#include "config.h"
#include "dict.h"

typedef struct DbBase DbBase;

DbBase* createDbBase(const char *paths[], unsigned int path_count, Dict *c, int ignore, int quiet, int ignore_init_read_errors);

#endif