1 2 3 4 5 6 7 8 9 10 11
use crate::macros::testbit::testbit; #[allow(non_snake_case)] #[macro_export] macro_rules! isfixed { ($x:expr) => { $crate::macros::testbit::testbit!((*$x).gch.marked, $crate::macros::FIXEDBIT) }; } pub use isfixed;