rofisys 0.2.5

This system crate provides Rust language bindings (via the use of Bindgen) to the Rust-OFI library.
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

// use std::ptr;
// use std::os::raw;
// use std::ffi::CString;
#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }

    #[test]
    fn it_may_work() {
        unsafe {

            let retval = crate::rofi_init();

            println!("rofi_init = {}\n", retval);
            crate::rofi_finit();
        }
    }
}