lethe 0.8.0

A secure, free, cross-platform and open-source drive wiping utility
1
2
3
4
5
6
#[macro_export]
macro_rules! offset_of {
    ($ty:ty, $field:ident) => {
        unsafe { &(*(0 as *const $ty)).$field as *const _ as usize }
    };
}