c_ares_sys/
lib.rs

1//! Low-level bindings for the c-ares library.
2//!
3//! In most cases this crate should not be used directly.  The c-ares crate provides a safe wrapper
4//! and should be preferred wherever possible.
5
6extern crate c_types;
7extern crate libc;
8
9#[cfg(target_os = "android")]
10extern crate jni_sys;
11
12mod constants;
13mod ffi;
14
15pub use crate::constants::*;
16pub use crate::ffi::*;