mirror of
https://github.com/pi-hole/FTL.git
synced 2024-10-26 16:52:18 +02:00
67e684b224
Signed-off-by: DL6ER <dl6er@dl6er.de>
19 lines
562 B
C
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
|