Laying down some framework

This commit is contained in:
Caleb Gardner
2025-07-11 06:45:51 -05:00
parent 23687eabb0
commit 61c86c9fea
3 changed files with 10 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
dereference_symlinks: bool,
unbreak_symlinks: bool,
ignore_permissions: bool,
processor_count: u16,
// max_memory: u64,
+3
View File
@@ -0,0 +1,3 @@
pub fn File(comptime T: type) type {
return struct {};
}
+1
View File
@@ -1,5 +1,6 @@
const std = @import("std"); const std = @import("std");
pub const Reader = @import("reader.zig").Reader; pub const Reader = @import("reader.zig").Reader;
pub const ExtractionOptions = @import("extract_options.zig");
pub const FileReader = Reader(std.fs.File); pub const FileReader = Reader(std.fs.File);