tfhe_cuda_backend/ffi.rs
1#![allow(warnings)]
2pub type c_void = std::ffi::c_void;
3pub type c_uint = std::ffi::c_uint;
4pub type c_uchar = std::ffi::c_uchar;
5pub type c_ushort = std::ffi::c_ushort;
6pub type c_ulong = std::ffi::c_ulong;
7pub type c_schar = std::ffi::c_schar;
8pub type c_int = std::ffi::c_int;
9pub type c_short = std::ffi::c_short;
10pub type c_long = std::ffi::c_long;
11pub type c_char = std::ffi::c_char;