mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 00:34:06 +02:00
12 lines
137 B
C
12 lines
137 B
C
#pragma once
|
|
|
|
#include "db.h"
|
|
#include <sqlite3.h>
|
|
|
|
struct Db {
|
|
int empty;
|
|
};
|
|
|
|
Db* db_sqlite_new(void);
|
|
void db_sqlite_free(Db* db);
|