Files
FTL/database/query-table.h
T
2019-07-01 13:48:40 +02:00

19 lines
562 B
C

/* Pi-hole: A black hole for Internet advertisements
* (c) 2019 Pi-hole, LLC (https://pi-hole.net)
* Network-wide ad blocking via your own hardware.
*
* FTL Engine
* Query table database prototypes
*
* This file is copyright under the latest version of the EUPL.
* Please see LICENSE file for your rights under this license. */
#ifndef DATABASE_QUERY_TABLE_H
#define DATABASE_QUERY_TABLE_H
int get_number_of_queries_in_DB(void);
void delete_old_queries_in_DB(void);
void DB_save_queries(void);
void DB_read_queries(void);
#endif //DATABASE_QUERY_TABLE_H