From 361bb55f01ba28960a8127b0a16c1e7a7a8de61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Fri, 17 Sep 2021 20:57:05 +0200 Subject: Rewrite mktpl script in C The Perl version didn't handle multiple interpolations on the same line. --- db.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 db.h (limited to 'db.h') diff --git a/db.h b/db.h new file mode 100644 index 0000000..629cb3b --- /dev/null +++ b/db.h @@ -0,0 +1,9 @@ +#include + +struct user{ + int id; + char *name; + char *hash; +}; + +sqlite3 *db; \ No newline at end of file -- cgit v1.2.3