lib.rs 418 B

1234567891011121314
  1. //! Copyright (c) 2016-2017, The Tor Project, Inc. */
  2. //! See LICENSE for licensing information */
  3. //! Interface for external calls to tor C ABI
  4. //!
  5. //! The purpose of this module is to provide a clean interface for when Rust
  6. //! modules need to interact with functionality in tor C code rather than each
  7. //! module implementing this functionality repeatedly.
  8. extern crate libc;
  9. mod external;
  10. pub use external::*;