forked from AbleOS/ableos_userland
13 lines
184 B
Plaintext
13 lines
184 B
Plaintext
|
Type UUID = Array[U8; 16];
|
||
|
|
||
|
Type Nanoseconds = U32;
|
||
|
|
||
|
Structure Duration{
|
||
|
secs: U64,
|
||
|
nanos: Nanoseconds,
|
||
|
}
|
||
|
|
||
|
Structure LinkedList{
|
||
|
data: Any,
|
||
|
child: Option<LinkedList>,
|
||
|
}
|