Fix compilation on systems with older compilers.
[tor.git] / src / lib / fs / conffile.h
blobcbfe4ec7c94ae65bffdf87c6a1ad94b472c8415b
1 /* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2020, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
7 #ifndef TOR_CONFFILE_H
8 #define TOR_CONFFILE_H
10 /**
11 * \file conffile.h
13 * \brief Header for conffile.c
14 **/
16 struct smartlist_t;
17 struct config_line_t;
19 int config_get_lines_include(const char *string, struct config_line_t **result,
20 int extended, int *has_include,
21 struct smartlist_t *opened_lst);
23 #endif /* !defined(TOR_CONFFILE_H) */