1 2 3 4 5 6 7 8
#ifndef DB_INIT_H #define DB_INIT_H #include <sqlite3.h> sqlite3 *db_init(const char *path); sqlite3 *db_open_worker(const char *path); #endif