A bit more messing around.

This commit is contained in:
Caleb Gardner
2025-05-13 10:24:17 -05:00
parent b4848de95d
commit 246d63d48a
5 changed files with 67 additions and 23 deletions
+11
View File
@@ -0,0 +1,11 @@
const std = @import("std");
const MetadataHeader = packed struct {
compressed: bool,
size: u15,
};
const MetadataReader = struct {
rdr: std.io.AnyReader,
curBlock: []const u8,
};