9 lines
142 B
C
9 lines
142 B
C
#ifndef DATABASE_H
|
|
#define DATABASE_H
|
|
|
|
#include <sqlite3.h>
|
|
|
|
int db_open(sqlite3 **db, const char *path);
|
|
void db_close(sqlite3 *db);
|
|
|
|
#endif
|