moving from gitlab

This commit is contained in:
2026-05-15 13:26:54 -04:00
commit 7391c21087
33 changed files with 2539 additions and 0 deletions
+12
View File
@@ -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