aboutsummaryrefslogtreecommitdiff
path: root/shared/fs/fat32/write/write.zig
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-07-12 05:17:19 +0530
committerBobby <[email protected]>2026-07-12 05:17:19 +0530
commitcfcee2cbb3f6daeb20ee62fcc411c99ca02f7dec (patch)
treebb4580d0c719ed6e3659f38e552c23cd9ac692cb /shared/fs/fat32/write/write.zig
parent174951500db9ee02ad537cf163d83f9b8dcd9b82 (diff)
downloadakiba-cfcee2cbb3f6daeb20ee62fcc411c99ca02f7dec.tar.xz
akiba-cfcee2cbb3f6daeb20ee62fcc411c99ca02f7dec.zip
Sweep: extract crimson/render strings, move pure-constant files into constants/ subfolders, strip explanatory comments and multi-line headers tree-wide, zig fmt
Diffstat (limited to 'shared/fs/fat32/write/write.zig')
-rw-r--r--shared/fs/fat32/write/write.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/shared/fs/fat32/write/write.zig b/shared/fs/fat32/write/write.zig
index 711293e..b6a596e 100644
--- a/shared/fs/fat32/write/write.zig
+++ b/shared/fs/fat32/write/write.zig
@@ -3,7 +3,6 @@
pub const boot = @import("boot.zig");
pub const entry = @import("entry.zig");
-// Boot sector creation
pub const CreateParams = boot.CreateParams;
pub const calculate_fat_size = boot.calculate_fat_size;
pub const create_boot_sector = boot.create_boot_sector;
@@ -12,7 +11,6 @@ pub const init_fat_table = boot.init_fat_table;
pub const allocate_cluster = boot.allocate_cluster;
pub const link_clusters = boot.link_clusters;
-// Entry creation
pub const create_entry = entry.create_entry;
pub const create_stack_entry = entry.create_stack_entry;
pub const create_dot_entry = entry.create_dot_entry;