Started work on File

This commit is contained in:
Caleb Gardner
2025-05-14 06:59:56 -05:00
parent b0c71c59f8
commit 6dd3054006
8 changed files with 91 additions and 72 deletions
+7
View File
@@ -0,0 +1,7 @@
const std = @import("std");
const FileOffsetReader = struct {
file: std.fs.File,
pub fn any(self: *FileOffsetReader) !std.io.AnyReader {}
};