c-ares-sys 0.12.0

Low-level bindings to the c-ares library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Low-level bindings for the c-ares library.
//!
//! In most cases this crate should not be used directly.  The c-ares crate
//! provides a safe wrapper and should be preferred wherever possible.

extern crate libc;
extern crate c_types;

#[cfg(windows)]
extern crate winapi;

mod constants;
mod ffi;

pub use constants::*;
pub use ffi::*;