├── .gitignore ├── CMDread.c ├── CMDread.cmd ├── CMDread.h ├── CMDread.rc ├── CMDread.txt ├── README.md ├── edit.c ├── edit.rc ├── makefile.gcc ├── makefile.vc └── version.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/.gitignore -------------------------------------------------------------------------------- /CMDread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/CMDread.c -------------------------------------------------------------------------------- /CMDread.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/CMDread.cmd -------------------------------------------------------------------------------- /CMDread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/CMDread.h -------------------------------------------------------------------------------- /CMDread.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/CMDread.rc -------------------------------------------------------------------------------- /CMDread.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/CMDread.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/README.md -------------------------------------------------------------------------------- /edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/edit.c -------------------------------------------------------------------------------- /edit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/edit.rc -------------------------------------------------------------------------------- /makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/makefile.gcc -------------------------------------------------------------------------------- /makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/makefile.vc -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adoxa/cmdkey/HEAD/version.h --------------------------------------------------------------------------------