mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
Add raw.odin
Forgot to do this in the previous commit, whoops :P
This commit is contained in:
@@ -0,0 +1,27 @@
|
|||||||
|
Any :: struct #ordered {
|
||||||
|
type_info: ^Type_Info,
|
||||||
|
data: rawptr,
|
||||||
|
}
|
||||||
|
|
||||||
|
String :: struct #ordered {
|
||||||
|
data: ^byte,
|
||||||
|
len: int,
|
||||||
|
};
|
||||||
|
|
||||||
|
Slice :: struct #ordered {
|
||||||
|
data: rawptr,
|
||||||
|
len: int,
|
||||||
|
cap: int,
|
||||||
|
};
|
||||||
|
|
||||||
|
Dynamic_Array :: struct #ordered {
|
||||||
|
data: rawptr,
|
||||||
|
len: int,
|
||||||
|
cap: int,
|
||||||
|
allocator: Allocator,
|
||||||
|
};
|
||||||
|
|
||||||
|
Dynamic_Map :: struct #ordered {
|
||||||
|
hashes: [dynamic]int,
|
||||||
|
entries: Dynamic_Array,
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user