├── .appveyor.yml ├── .depend ├── .gitignore ├── .travis.yml ├── COPYING ├── INSTALL ├── Makefile.in ├── NEWS ├── README ├── README.md ├── README.win32-libdsk ├── README.win32.cygwin.txt ├── badfs ├── Makefile ├── blocknumber ├── doubleext ├── extension ├── extno ├── hugecom ├── label ├── lcr ├── multipleblocks ├── name ├── recordcount ├── status └── timestamps ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.in ├── cpm.5 ├── cpm.5.in ├── cpm.ps ├── cpmchattr.1 ├── cpmchattr.1.in ├── cpmchattr.c ├── cpmchmod.1 ├── cpmchmod.1.in ├── cpmchmod.c ├── cpmcp.1 ├── cpmcp.1.in ├── cpmcp.c ├── cpmdir.h ├── cpmfs.c ├── cpmfs.h ├── cpmls.1 ├── cpmls.1.in ├── cpmls.c ├── cpmrm.1 ├── cpmrm.1.in ├── cpmrm.c ├── device.h ├── device_libdsk.c ├── device_posix.c ├── device_win32.c ├── diskdefs ├── diskdefs.5 ├── diskdefs.5.in ├── fsck.cpm.1 ├── fsck.cpm.1.in ├── fsck.cpm.c ├── fsed.cpm.1 ├── fsed.cpm.1.in ├── fsed.cpm.c ├── getopt.c ├── getopt1.c ├── getopt_.h ├── getopt_int.h ├── install-sh ├── makefile.nt ├── mkfs.cpm.1 ├── mkfs.cpm.1.in └── mkfs.cpm.c /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/.depend -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/README.md -------------------------------------------------------------------------------- /README.win32-libdsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/README.win32-libdsk -------------------------------------------------------------------------------- /README.win32.cygwin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/README.win32.cygwin.txt -------------------------------------------------------------------------------- /badfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/Makefile -------------------------------------------------------------------------------- /badfs/blocknumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/blocknumber -------------------------------------------------------------------------------- /badfs/doubleext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/doubleext -------------------------------------------------------------------------------- /badfs/extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/extension -------------------------------------------------------------------------------- /badfs/extno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/extno -------------------------------------------------------------------------------- /badfs/hugecom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/hugecom -------------------------------------------------------------------------------- /badfs/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/label -------------------------------------------------------------------------------- /badfs/lcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/lcr -------------------------------------------------------------------------------- /badfs/multipleblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/multipleblocks -------------------------------------------------------------------------------- /badfs/name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/name -------------------------------------------------------------------------------- /badfs/recordcount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/recordcount -------------------------------------------------------------------------------- /badfs/status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/status -------------------------------------------------------------------------------- /badfs/timestamps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/badfs/timestamps -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/configure.in -------------------------------------------------------------------------------- /cpm.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpm.5 -------------------------------------------------------------------------------- /cpm.5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpm.5.in -------------------------------------------------------------------------------- /cpm.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpm.ps -------------------------------------------------------------------------------- /cpmchattr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmchattr.1 -------------------------------------------------------------------------------- /cpmchattr.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmchattr.1.in -------------------------------------------------------------------------------- /cpmchattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmchattr.c -------------------------------------------------------------------------------- /cpmchmod.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmchmod.1 -------------------------------------------------------------------------------- /cpmchmod.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmchmod.1.in -------------------------------------------------------------------------------- /cpmchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmchmod.c -------------------------------------------------------------------------------- /cpmcp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmcp.1 -------------------------------------------------------------------------------- /cpmcp.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmcp.1.in -------------------------------------------------------------------------------- /cpmcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmcp.c -------------------------------------------------------------------------------- /cpmdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmdir.h -------------------------------------------------------------------------------- /cpmfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmfs.c -------------------------------------------------------------------------------- /cpmfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmfs.h -------------------------------------------------------------------------------- /cpmls.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmls.1 -------------------------------------------------------------------------------- /cpmls.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmls.1.in -------------------------------------------------------------------------------- /cpmls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmls.c -------------------------------------------------------------------------------- /cpmrm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmrm.1 -------------------------------------------------------------------------------- /cpmrm.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmrm.1.in -------------------------------------------------------------------------------- /cpmrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/cpmrm.c -------------------------------------------------------------------------------- /device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/device.h -------------------------------------------------------------------------------- /device_libdsk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/device_libdsk.c -------------------------------------------------------------------------------- /device_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/device_posix.c -------------------------------------------------------------------------------- /device_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/device_win32.c -------------------------------------------------------------------------------- /diskdefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/diskdefs -------------------------------------------------------------------------------- /diskdefs.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/diskdefs.5 -------------------------------------------------------------------------------- /diskdefs.5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/diskdefs.5.in -------------------------------------------------------------------------------- /fsck.cpm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/fsck.cpm.1 -------------------------------------------------------------------------------- /fsck.cpm.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/fsck.cpm.1.in -------------------------------------------------------------------------------- /fsck.cpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/fsck.cpm.c -------------------------------------------------------------------------------- /fsed.cpm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/fsed.cpm.1 -------------------------------------------------------------------------------- /fsed.cpm.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/fsed.cpm.1.in -------------------------------------------------------------------------------- /fsed.cpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/fsed.cpm.c -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/getopt.c -------------------------------------------------------------------------------- /getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/getopt1.c -------------------------------------------------------------------------------- /getopt_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/getopt_.h -------------------------------------------------------------------------------- /getopt_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/getopt_int.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/install-sh -------------------------------------------------------------------------------- /makefile.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/makefile.nt -------------------------------------------------------------------------------- /mkfs.cpm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/mkfs.cpm.1 -------------------------------------------------------------------------------- /mkfs.cpm.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/mkfs.cpm.1.in -------------------------------------------------------------------------------- /mkfs.cpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipro-cpm4l/cpmtools/HEAD/mkfs.cpm.c --------------------------------------------------------------------------------