]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - vtoycli/fat_io_lib/include/fat_cache.h
change password input field to type=password (#2427)
[Ventoy.git] / vtoycli / fat_io_lib / include / fat_cache.h
1 #ifndef __FAT_CACHE_H__
2 #define __FAT_CACHE_H__
3
4 #include "fat_filelib.h"
5
6 //-----------------------------------------------------------------------------
7 // Prototypes
8 //-----------------------------------------------------------------------------
9 int fatfs_cache_init(struct fatfs *fs, FL_FILE *file);
10 int fatfs_cache_get_next_cluster(struct fatfs *fs, FL_FILE *file, uint32 clusterIdx, uint32 *pNextCluster);
11 int fatfs_cache_set_next_cluster(struct fatfs *fs, FL_FILE *file, uint32 clusterIdx, uint32 nextCluster);
12
13 #endif