1
2
3
4
5
6
use std::ffi::{c_char, c_int};

extern "C" {
    pub fn dlog_connect_fd(buffer: i32, fileno: c_int, tag: *const c_char, prio: i32) -> c_int;
    pub fn dlog_is_log_fd(fd: c_int) -> bool;
}