dlog_redirect_stdout_sys/
lib.rs

1use std::ffi::{c_char, c_int};
2
3extern "C" {
4    pub fn dlog_connect_fd(buffer: i32, fileno: c_int, tag: *const c_char, prio: i32) -> c_int;
5    pub fn dlog_is_log_fd(fd: c_int) -> bool;
6}