moving from gitlab
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#ifndef DB_H
|
||||
#define DB_H
|
||||
#include <sqlite3.h>
|
||||
|
||||
sqlite3 *initDB();
|
||||
|
||||
char *GetJoke(sqlite3 *db);
|
||||
bool DeleteJoke(sqlite3 *db, int id);
|
||||
bool NewJoke(sqlite3 *db, char *data);
|
||||
int JokeCount(sqlite3 *db);
|
||||
|
||||
#endif // !DB_H
|
||||
Reference in New Issue
Block a user