mirror of
https://github.com/pi-hole/FTL.git
synced 2024-10-26 16:52:18 +02:00
55ed61fbea
Signed-off-by: DL6ER <dl6er@dl6er.de>
20 lines
504 B
C
20 lines
504 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
|
|
* Argument parsing prototypes
|
|
*
|
|
* This file is copyright under the latest version of the EUPL.
|
|
* Please see LICENSE file for your rights under this license. */
|
|
#ifndef ARGS_H
|
|
#define ARGS_H
|
|
|
|
void parse_args(int argc, char* argv[]);
|
|
|
|
extern bool daemonmode;
|
|
extern int argc_dnsmasq;
|
|
extern const char ** argv_dnsmasq;
|
|
|
|
#endif //ARGS_H
|