dobby_sys/
lib.rs

1pub mod ffi;
2
3#[cfg(test)]
4mod tests {
5    #[test]
6    fn test_build_version() {
7        unsafe {
8            let ptr = super::ffi::DobbyBuildVersion();
9            let s = std::ffi::CStr::from_ptr(ptr);
10            println!("{}", s.to_string_lossy());
11        }
12    }
13}