Functions | |
struct fat16_fs_struct * | fat16_open (struct partition_struct *partition) |
Opens a FAT16 filesystem. | |
void | fat16_close (struct fat16_fs_struct *fs) |
Closes a FAT16 filesystem. | |
uint32_t | fat16_get_fs_size (const struct fat16_fs_struct *fs) |
Returns the amount of total storage capacity of the filesystem in bytes. | |
uint32_t | fat16_get_fs_free (const struct fat16_fs_struct *fs) |
Returns the amount of free storage capacity on the filesystem in bytes. |
struct fat16_fs_struct* fat16_open | ( | struct partition_struct * | partition | ) | [read] |
Opens a FAT16 filesystem.
[in] | partition | Discriptor of partition on which the filesystem resides. |
void fat16_close | ( | struct fat16_fs_struct * | fs | ) |
Closes a FAT16 filesystem.
When this function returns, the given filesystem descriptor will be invalid.
[in] | fs | The filesystem to close. |
uint32_t fat16_get_fs_size | ( | const struct fat16_fs_struct * | fs | ) |
Returns the amount of total storage capacity of the filesystem in bytes.
[in] | fs | The filesystem on which to operate. |
uint32_t fat16_get_fs_free | ( | const struct fat16_fs_struct * | fs | ) |
Returns the amount of free storage capacity on the filesystem in bytes.
[in] | fs | The filesystem on which to operate. |