core-legacy/include/database.h

12 lines
159 B
C
Raw Normal View History

2020-05-05 09:42:02 +00:00
#ifndef CORE_DATABASE_H
#define CORE_DATABASE_H
#include <sqlite3.h>
extern sqlite3 *global_database;
int
database_migrate();
#endif /* CORE_DATABASE_H */