moved magic.h to tlibc

This commit is contained in:
Timerix 2025-11-18 16:29:34 +05:00
parent c68e4e87b3
commit ec164dc4e9

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;