aboutsummaryrefslogtreecommitdiff
path: root/db.h
blob: 629cb3b4d918b7e33486c27bbf085876e8f4cd07 (plain)
1
2
3
4
5
6
7
8
9
#include <sqlite3.h>

struct user{
	int id;
	char *name;
	char *hash;
};

sqlite3 *db;