├── .gitignore ├── Makefile ├── gba └── Makefile ├── gp2x └── Makefile ├── include └── fat.h ├── libfat.pnproj ├── libogc └── Makefile ├── nds └── Makefile └── source ├── bit_ops.h ├── cache.c ├── cache.h ├── common.h ├── directory.c ├── directory.h ├── disc.c ├── disc.h ├── fatdir.c ├── fatdir.h ├── fatfile.c ├── fatfile.h ├── file_allocation_table.c ├── file_allocation_table.h ├── filetime.c ├── filetime.h ├── libfat.c ├── lock.c ├── lock.h ├── mem_allocate.h ├── partition.c └── partition.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/Makefile -------------------------------------------------------------------------------- /gba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/gba/Makefile -------------------------------------------------------------------------------- /gp2x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/gp2x/Makefile -------------------------------------------------------------------------------- /include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/include/fat.h -------------------------------------------------------------------------------- /libfat.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/libfat.pnproj -------------------------------------------------------------------------------- /libogc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/libogc/Makefile -------------------------------------------------------------------------------- /nds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/nds/Makefile -------------------------------------------------------------------------------- /source/bit_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/bit_ops.h -------------------------------------------------------------------------------- /source/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/cache.c -------------------------------------------------------------------------------- /source/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/cache.h -------------------------------------------------------------------------------- /source/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/common.h -------------------------------------------------------------------------------- /source/directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/directory.c -------------------------------------------------------------------------------- /source/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/directory.h -------------------------------------------------------------------------------- /source/disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/disc.c -------------------------------------------------------------------------------- /source/disc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/disc.h -------------------------------------------------------------------------------- /source/fatdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/fatdir.c -------------------------------------------------------------------------------- /source/fatdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/fatdir.h -------------------------------------------------------------------------------- /source/fatfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/fatfile.c -------------------------------------------------------------------------------- /source/fatfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/fatfile.h -------------------------------------------------------------------------------- /source/file_allocation_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/file_allocation_table.c -------------------------------------------------------------------------------- /source/file_allocation_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/file_allocation_table.h -------------------------------------------------------------------------------- /source/filetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/filetime.c -------------------------------------------------------------------------------- /source/filetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/filetime.h -------------------------------------------------------------------------------- /source/libfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/libfat.c -------------------------------------------------------------------------------- /source/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/lock.c -------------------------------------------------------------------------------- /source/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/lock.h -------------------------------------------------------------------------------- /source/mem_allocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/mem_allocate.h -------------------------------------------------------------------------------- /source/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/partition.c -------------------------------------------------------------------------------- /source/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/libfat/HEAD/source/partition.h --------------------------------------------------------------------------------