Tor 0.4.9.0-alpha-dev
conffile.h
Go to the documentation of this file.
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-2021, The Tor Project, Inc. */
5/* See LICENSE for licensing information */
6
7#ifndef TOR_CONFFILE_H
8#define TOR_CONFFILE_H
9
10/**
11 * \file conffile.h
12 *
13 * \brief Header for conffile.c
14 **/
15
16struct smartlist_t;
17struct config_line_t;
18
19int config_get_lines_include(const char *string, struct config_line_t **result,
20 int extended, int *has_include,
21 struct smartlist_t *opened_lst);
22
23#endif /* !defined(TOR_CONFFILE_H) */
int config_get_lines_include(const char *string, struct config_line_t **result, int extended, int *has_include, struct smartlist_t *opened_lst)
Definition: conffile.c:49