Add mem.reinterpret

This commit is contained in:
gingerBill
2021-08-20 10:18:34 +01:00
parent fa4f3aa7ad
commit b5cdb331b0

View File

@@ -245,6 +245,10 @@ context_from_allocator :: proc(a: Allocator) -> type_of(context) {
return context;
}
reinterpret :: proc($T: typeid, ptr: rawptr) -> (value: T) {
copy(&value, ptr, size_of(T));
return;
}
Fixed_Byte_Buffer :: distinct [dynamic]byte;