dict @ 6ed576974dec969ad2745a451a6f680a3cdbcfc4

 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
11int load_or_save_db(sqlite3 *pInMemory, const char *zFilename, int isSave);
12
13unsigned int count_file_lines(FILE *file);