Compare commits

..

1 Commits

Author SHA1 Message Date
ec164dc4e9 moved magic.h to tlibc 2025-11-18 16:29:34 +05:00

12
include/tlibc/magic.h Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
#include "tlibc/std.h"
typedef union Magic32 {
u32 n;
u8 bytes[4];
} Magic32;
typedef union Magic64 {
u64 n;
u8 bytes[8];
} Magic64;