1 /*
2  * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
3  *
4  * Squid software is distributed under GPLv2+ license and includes
5  * contributions from numerous individuals and organizations.
6  * Please see the COPYING and CONTRIBUTORS files for details.
7  */
8 
9 /* DEBUG: section 03    Configuration File Parsing */
10 
11 #ifndef SQUID_CACHE_CF_H_
12 #define SQUID_CACHE_CF_H_
13 
14 class wordlist;
15 
16 void configFreeMemory(void);
17 void self_destruct(void);
18 void add_http_port(char *portspec);
19 
20 /* extra functions from cache_cf.c useful for lib modules */
21 void parse_int(int *var);
22 void parse_onoff(int *var);
23 void parse_eol(char *volatile *var);
24 void parse_wordlist(wordlist ** list);
25 void requirePathnameExists(const char *name, const char *path);
26 void parse_time_t(time_t * var);
27 /// Parse bytes number from a string
28 void parseBytesOptionValue(size_t * bptr, const char *units, char const * value);
29 
30 #endif /* SQUID_CACHE_CF_H_ */
31 
32