vfat-rs 0.1.1

A no_std-compatible FAT32/VFAT filesystem implementation in Rust for custom kernels
Documentation
1
2
3
4
5
6
//! Helpers to read and write cluster chains
//! these two struct are very similar yet different.
//! The most noticeable difference is that writer will allocate new clusters
//! as we keep writing to it, whereas the reader will stop when have finished reading the chain.
pub mod cluster_reader;
pub mod cluster_writer;