subprocess.h 455 B

1234567891011121314151617181920
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file subprocess.h
  7. * \brief Header for subprocess.c
  8. **/
  9. #ifndef TOR_SUBPROCESS_H
  10. #define TOR_SUBPROCESS_H
  11. void tor_disable_spawning_background_processes(void);
  12. #ifndef _WIN32
  13. char *tor_join_win_cmdline(const char *argv[]);
  14. #endif
  15. #endif