newt-sys 0.1.6

Low-level bindings for the Newt console UI library
Documentation
use std::os::raw::c_int;

extern "C" {
    fn newt_sys__colorset_custom(i: c_int) -> c_int;
}

#[inline]
pub fn NEWT_COLORSET_CUSTOM(i: i32) -> i32 {
    unsafe { newt_sys__colorset_custom(i) }
}