aboutsummaryrefslogtreecommitdiff
path: root/shared/fs/fat32/write/write.zig
blob: 711293ee029b085f5fb0e8345b4d25b20b928845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! FAT32 Write Operations

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;
pub const create_fsinfo = boot.create_fsinfo;
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;
pub const create_dotdot_entry = entry.create_dotdot_entry;
pub const create_unit_entry = entry.create_unit_entry;
pub const parse_identity = entry.parse_identity;