1#pragma once
2
3#include <sqlite3.h>
4#include <stdio.h>
5
6/*
7 * Copy of a char to a newly created string of the same size.
8 */
9char* copy_achar(const char*);
10
11
12int load_or_save_db(sqlite3 *pInMemory, const char *zFilename, int isSave);
13
14
15unsigned int count_file_lines(FILE *file);