├── .gitignore ├── LICENSE ├── project ├── Makefile ├── build.sh ├── function │ ├── api.h │ └── function.c ├── global │ ├── define.h │ ├── global.h │ └── var.h ├── main.c ├── shell │ ├── shell.c │ └── shell.h └── util │ ├── disk.c │ ├── disk.h │ ├── list.c │ ├── list.h │ ├── listmacro.h │ ├── str.c │ ├── str.h │ ├── time.c │ └── time.h ├── readme.md └── test ├── createDisk.c ├── fileopen.c ├── listmacrotest.c ├── listtest.c └── offset.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/Makefile -------------------------------------------------------------------------------- /project/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/build.sh -------------------------------------------------------------------------------- /project/function/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/function/api.h -------------------------------------------------------------------------------- /project/function/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/function/function.c -------------------------------------------------------------------------------- /project/global/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/global/define.h -------------------------------------------------------------------------------- /project/global/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/global/global.h -------------------------------------------------------------------------------- /project/global/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/global/var.h -------------------------------------------------------------------------------- /project/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/main.c -------------------------------------------------------------------------------- /project/shell/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/shell/shell.c -------------------------------------------------------------------------------- /project/shell/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/shell/shell.h -------------------------------------------------------------------------------- /project/util/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/disk.c -------------------------------------------------------------------------------- /project/util/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/disk.h -------------------------------------------------------------------------------- /project/util/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/list.c -------------------------------------------------------------------------------- /project/util/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/list.h -------------------------------------------------------------------------------- /project/util/listmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/listmacro.h -------------------------------------------------------------------------------- /project/util/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/str.c -------------------------------------------------------------------------------- /project/util/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/str.h -------------------------------------------------------------------------------- /project/util/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/time.c -------------------------------------------------------------------------------- /project/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/project/util/time.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/readme.md -------------------------------------------------------------------------------- /test/createDisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/test/createDisk.c -------------------------------------------------------------------------------- /test/fileopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/test/fileopen.c -------------------------------------------------------------------------------- /test/listmacrotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/test/listmacrotest.c -------------------------------------------------------------------------------- /test/listtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/test/listtest.c -------------------------------------------------------------------------------- /test/offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwzhuo/SimpleFileSystem/HEAD/test/offset.c --------------------------------------------------------------------------------