controller-legacy/include/database.h
2020-04-18 16:34:43 +02:00

18 lines
402 B
C

#ifndef CONTROLLER_DATABASE_H
#define CONTROLLER_DATABASE_H
#include <lmdb.h>
/**
* @brief Setup lmdb database enviroment
*
* Creates, sets max dbs and opens an MDB_env instance.
* Will return on success, but exit program on failure.
*
* @param mdb_env Source variable will be set to new MDB_env
*/
void
database_setup(MDB_env **mdb_env, config_t *config);
#endif /* CONTROLLER_DATABASE_H */