Files
mop3/libfat/_fatctx.h
kamkow1 3d9503260e
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m57s
CE add format command, implement libfat
2026-03-10 21:38:51 +01:00

15 lines
319 B
C

#ifndef _KERNEL_FS_FATFS_CTX_H
#define _KERNEL_FS_FATFS_CTX_H
struct fatfs_ctx {
FL_FILE _files[FATFS_MAX_OPEN_FILES];
int _filelib_init;
int _filelib_valid;
struct fatfs _fs;
struct fat_list _open_file_list;
struct fat_list _free_file_list;
char device_name[0x100];
};
#endif // _KERNEL_FS_FATFS_CTX_H