c-ffi 0.4.6

C FFI utilities.
Documentation
1
2
3
4
5
6
use c_ffi::c_lit;

#[test]
fn verify_c_lit() {
    assert_eq!(c_lit!("hello", " ", "lolka"), "hello lolka\0");
}