ctest 0.5.1

Automated testing of FFI bindings in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::bar::in6_addr;
use std::os::raw::c_void;

pub const ON: bool = true;

unsafe extern "C" {
    pub fn malloc(size: usize) -> *mut c_void;

    pub static in6addr_any: in6_addr;
}