mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-30 11:20:08 +00:00
windows.odin TYPE_NAME to Type_Name; More SSA work and SSA printing for debugging
This commit is contained in:
@@ -806,6 +806,10 @@ GB_DEF void const *gb_memchr (void const *data, u8 byte_value, isize size);
|
||||
GB_DEF void const *gb_memrchr (void const *data, u8 byte_value, isize size);
|
||||
|
||||
|
||||
#ifndef gb_memcopy_array
|
||||
#define gb_memcopy_array(dst, src, count) gb_memcopy((dst), (src), gb_size_of(*(dst))*(count))
|
||||
#endif
|
||||
|
||||
// NOTE(bill): Very similar to doing `*cast(T *)(&u)`
|
||||
#ifndef GB_BIT_CAST
|
||||
#define GB_BIT_CAST(dest, source) do { \
|
||||
|
||||
Reference in New Issue
Block a user