conffile.h 575 B

1234567891011121314151617
  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-2018, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. #ifndef TOR_CONFFILE_H
  7. #define TOR_CONFFILE_H
  8. struct smartlist_t;
  9. struct config_line_t;
  10. int config_get_lines_include(const char *string, struct config_line_t **result,
  11. int extended, int *has_include,
  12. struct smartlist_t *opened_lst);
  13. #endif /* !defined(TOR_CONFLINE_H) */