aboutsummaryrefslogtreecommitdiff
path: root/lib/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.h')
-rw-r--r--lib/util.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/util.h b/lib/util.h
deleted file mode 100644
index 33c61ed..0000000
--- a/lib/util.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include <sqlite3.h>
-#include <stdio.h>
-
-/*
- * Copy of a char to a newly created string of the same size.
- */
-char* copy_achar(const char*);
-
-int load_or_save_db(sqlite3 *pInMemory, const char *zFilename, int isSave);
-
-unsigned int count_file_lines(FILE *file);