aboutsummaryrefslogtreecommitdiff
path: root/shared/fs/fat32/read/read.zig
blob: 7fca337887a601ec65c937d2430c2d496728da93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! FAT32 Read Operations

pub const cluster = @import("cluster.zig");
pub const stack = @import("stack.zig");

// Cluster operations
pub const ClusterError = cluster.ClusterError;
pub const is_valid_cluster = cluster.is_valid_cluster;
pub const is_end_of_chain = cluster.is_end_of_chain;
pub const get_fat_position = cluster.get_fat_position;
pub const cluster_to_lba = cluster.cluster_to_lba;
pub const parse_fat_entry = cluster.parse_fat_entry;

// Stack operations
pub const LocationError = stack.LocationError;
pub const identities_equal = stack.identities_equal;
pub const LocationIterator = stack.LocationIterator;
pub const entry_matches_identity = stack.entry_matches_identity;