mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 14:53:08 +00:00
10 lines
214 B
Zig
10 lines
214 B
Zig
pub const TableHeader = extern struct {
|
|
signature: u64,
|
|
revision: u32,
|
|
|
|
/// The size, in bytes, of the entire table including the TableHeader
|
|
header_size: u32,
|
|
crc32: u32,
|
|
reserved: u32,
|
|
};
|