mirror of
https://github.com/pi-hole/FTL.git
synced 2024-10-26 16:52:18 +02:00
a78c0cc5ae
Signed-off-by: DL6ER <dl6er@dl6er.de>
19 lines
541 B
C
19 lines
541 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
|
|
* File prototypes
|
|
*
|
|
* This file is copyright under the latest version of the EUPL.
|
|
* Please see LICENSE file for your rights under this license. */
|
|
#ifndef FILE_H
|
|
#define FILE_H
|
|
|
|
bool chmod_file(const char *filename, const mode_t mode);
|
|
bool file_exists(const char *filename);
|
|
unsigned long long get_FTL_db_filesize(void);
|
|
void ls_dir(const char* path);
|
|
|
|
#endif //FILE_H
|