Re-set & re-write of several things
Implemented new decompression cache to prevent decompressing the same block multiple times
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
const Reader = @import("std").Io.Reader;
|
||||
|
||||
pub const Dir = packed struct {
|
||||
pub const Dir = extern struct {
|
||||
block_start: u32,
|
||||
hard_links: u32,
|
||||
size: u16,
|
||||
@@ -14,7 +14,7 @@ pub const Dir = packed struct {
|
||||
}
|
||||
};
|
||||
|
||||
pub const ExtDir = packed struct {
|
||||
pub const ExtDir = extern struct {
|
||||
hard_links: u32,
|
||||
size: u32,
|
||||
block_start: u32,
|
||||
|
||||
Reference in New Issue
Block a user