├── .gitignore ├── 8D0907551C.ini ├── 8D0907551M.ini ├── README ├── crc32.c ├── crc32.h ├── ferrari360.ini ├── inifile ├── inifile.c ├── inifile.h └── makefile ├── inifile_prop.c ├── inifile_prop.h ├── load_file.c ├── load_file.h ├── makefile ├── makefile.common ├── me7sum.c ├── mestuff.txt ├── nmakefile ├── os └── mmap.h ├── prep.cmd ├── save_file.c ├── save_file.h ├── utils.c ├── utils.h └── vars.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/.gitignore -------------------------------------------------------------------------------- /8D0907551C.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/8D0907551C.ini -------------------------------------------------------------------------------- /8D0907551M.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/8D0907551M.ini -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/README -------------------------------------------------------------------------------- /crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/crc32.c -------------------------------------------------------------------------------- /crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/crc32.h -------------------------------------------------------------------------------- /ferrari360.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/ferrari360.ini -------------------------------------------------------------------------------- /inifile/inifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/inifile/inifile.c -------------------------------------------------------------------------------- /inifile/inifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/inifile/inifile.h -------------------------------------------------------------------------------- /inifile/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/inifile/makefile -------------------------------------------------------------------------------- /inifile_prop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/inifile_prop.c -------------------------------------------------------------------------------- /inifile_prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/inifile_prop.h -------------------------------------------------------------------------------- /load_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/load_file.c -------------------------------------------------------------------------------- /load_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/load_file.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/makefile -------------------------------------------------------------------------------- /makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/makefile.common -------------------------------------------------------------------------------- /me7sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/me7sum.c -------------------------------------------------------------------------------- /mestuff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/mestuff.txt -------------------------------------------------------------------------------- /nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/nmakefile -------------------------------------------------------------------------------- /os/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/os/mmap.h -------------------------------------------------------------------------------- /prep.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/prep.cmd -------------------------------------------------------------------------------- /save_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/save_file.c -------------------------------------------------------------------------------- /save_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/save_file.h -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/utils.h -------------------------------------------------------------------------------- /vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360trev/ME7Sum/HEAD/vars.mk --------------------------------------------------------------------------------