lv-std 0.0.4

some utils for c and unsafe rust, this is for personal use for now so you can use it but don't expect any regular updates or maintaining
Documentation
1
2
3
4
5
6
7
8
9

#[allow(non_camel_case_types)]
#[derive(Copy, Clone)]
pub enum void_enum {}

#[allow(non_camel_case_types)]
#[repr(transparent)]
#[derive(Copy, Clone)]
pub struct void(void_enum);