conffile.h 640 B

1234567891011121314151617181920212223
  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. /**
  9. * \file conffile.h
  10. *
  11. * \brief Header for conffile.c
  12. **/
  13. struct smartlist_t;
  14. struct config_line_t;
  15. int config_get_lines_include(const char *string, struct config_line_t **result,
  16. int extended, int *has_include,
  17. struct smartlist_t *opened_lst);
  18. #endif /* !defined(TOR_CONFLINE_H) */