m4ri_sys/
misc.rs

1//! Links to m4ri/misc.h
2use libc;
3
4/// M4RI Internal representation
5pub type Rci = libc::c_int;
6
7/// M4RI Internal representation
8pub type BIT = libc::c_int;
9
10/// M4RI Internal representation
11pub type Word = u64;
12
13/// M4RI Internal representation
14pub type Wi = libc::c_int;
15
16/// The number of bits in a word
17#[allow(non_upper_case_globals, dead_code)]
18pub static m4ri_radix: libc::c_int = 64;
19
20/// The number one as a word
21#[allow(non_upper_case_globals, dead_code)]
22pub static m4ri_one: Word = 1u64;
23
24/// A word with all bits set
25#[allow(non_upper_case_globals, dead_code)]
26pub static m4ri_ffff: Word = 0xffff_ffff_ffff_ffff;