├── .vscode └── settings.json ├── AUTORES.txt ├── Makefile ├── README.md ├── blocks_cache.c ├── create_disk ├── create_disk.c ├── disk.dat ├── filesystem ├── auxiliary.h ├── blocks_cache.c ├── blocks_cache.h ├── blocks_cache.o ├── crc.c ├── crc.h ├── crc.o ├── filesystem.c ├── filesystem.h ├── filesystem.o └── metadata.h ├── libfs.a ├── test ├── test.c └── zlib ├── Copyright ├── README ├── crc32.c ├── crc32.h ├── crc32.o ├── zconf.h ├── zlib.h └── zutil.h /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTORES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/AUTORES.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/README.md -------------------------------------------------------------------------------- /blocks_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/blocks_cache.c -------------------------------------------------------------------------------- /create_disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/create_disk -------------------------------------------------------------------------------- /create_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/create_disk.c -------------------------------------------------------------------------------- /disk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/disk.dat -------------------------------------------------------------------------------- /filesystem/auxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/auxiliary.h -------------------------------------------------------------------------------- /filesystem/blocks_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/blocks_cache.c -------------------------------------------------------------------------------- /filesystem/blocks_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/blocks_cache.h -------------------------------------------------------------------------------- /filesystem/blocks_cache.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/blocks_cache.o -------------------------------------------------------------------------------- /filesystem/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/crc.c -------------------------------------------------------------------------------- /filesystem/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/crc.h -------------------------------------------------------------------------------- /filesystem/crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/crc.o -------------------------------------------------------------------------------- /filesystem/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/filesystem.c -------------------------------------------------------------------------------- /filesystem/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/filesystem.h -------------------------------------------------------------------------------- /filesystem/filesystem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/filesystem.o -------------------------------------------------------------------------------- /filesystem/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/filesystem/metadata.h -------------------------------------------------------------------------------- /libfs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/libfs.a -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/test -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/test.c -------------------------------------------------------------------------------- /zlib/Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/zlib/Copyright -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/crc32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/zlib/crc32.o -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrLozano/Simple-File-System/HEAD/zlib/zutil.h --------------------------------------------------------------------------------