craydate_sys/lib.rs
1#![no_std]
2#![deny(clippy::all)]
3#![allow(non_upper_case_globals)]
4#![allow(non_camel_case_types)]
5#![allow(non_snake_case)]
6#![feature(proc_macro_hygiene)]
7
8pub mod ctypes {
9 pub type c_int = i32;
10 pub type c_char = u8;
11 pub type c_uint = u32;
12 pub type c_ulonglong = u64;
13 pub type c_void = core::ffi::c_void;
14}
15
16#[cfg(not(feature = "generate"))]
17mod bindings;
18#[cfg(not(feature = "generate"))]
19pub use bindings::*;