2023-08-21 17:26:44 +03:00
|
|
|
#![no_std]
|
|
|
|
#![feature(maybe_uninit_slice)]
|
|
|
|
|
2023-11-30 11:00:51 +02:00
|
|
|
pub(crate) mod api;
|
|
|
|
|
2023-08-21 17:26:44 +03:00
|
|
|
pub mod sync;
|
|
|
|
pub mod util;
|
2023-09-06 18:48:00 +03:00
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct AlignedTo<Align, Bytes: ?Sized> {
|
|
|
|
pub align: [Align; 0],
|
|
|
|
pub bytes: Bytes,
|
|
|
|
}
|