├── .gitignore ├── LICENSE ├── README ├── binhex ├── .gitignore ├── binhex.c ├── dofile.c └── makefile ├── comm ├── .gitignore ├── comm.h ├── frommac.c ├── globals.c ├── globals.h ├── makefile ├── protocol.h ├── tomac.c ├── tty.c ├── xm_from.c ├── xm_to.c ├── ym_from.c ├── ym_to.c ├── zm_from.c └── zm_to.c ├── crc ├── .gitignore ├── makecrc.c └── makefile ├── doc ├── README.crc ├── README.crc.orig ├── README.hexbin ├── README.macget ├── README.macput ├── README.scan ├── README.unpit ├── README.unsit └── README.zoom ├── fileio ├── appledouble.h ├── aufs.h ├── fileglob.c ├── fileglob.h ├── kind.h ├── machdr.h ├── makefile ├── rdfile.c ├── rdfile.h ├── rdfileopt.h ├── wrfile.c ├── wrfile.h └── wrfileopt.h ├── hexbin ├── .gitignore ├── buffer.c ├── buffer.h ├── crc.c ├── crc.h ├── dl.c ├── globals.c ├── globals.h ├── hecx.c ├── hexbin.c ├── hexbin.h ├── hqx.c ├── hqx.diff ├── makefile ├── mu.c ├── printhdr.c ├── printhdr.h ├── readline.c └── readline.h ├── macunpack ├── .gitignore ├── arc.h ├── bin.c ├── bits_be.c ├── bits_be.h ├── cpt.c ├── cpt.h ├── crc.c ├── crc.h ├── dd.c ├── dd.h ├── de_compress.c ├── de_huffman.c ├── de_lzah.c ├── de_lzh.c ├── dia.c ├── dia.h ├── dir.c ├── globals.c ├── globals.h ├── huffman.h ├── jdw.c ├── jdw.h ├── lzc.c ├── lzc.h ├── lzh.c ├── lzh.h ├── macbinary.c ├── macunpack.c ├── macunpack.h ├── makefile ├── mcb.c ├── pit.c ├── pit.h ├── sit.c ├── sit.h ├── stf.c ├── stf.h ├── zma.c ├── zma.h └── zmahdr.h ├── makefile ├── man ├── binhex.1 ├── frommac.1 ├── hexbin.1 ├── macsave.1 ├── macstream.1 ├── macunpack.1 ├── macutils.7 └── tomac.1 ├── mixed ├── .gitignore ├── dir.c ├── globals.c ├── globals.h ├── macbinary.c ├── macsave.c ├── macstream.c ├── makefile └── mcb.c └── util ├── backtrans.c ├── curtime.h ├── makefile ├── masks.h ├── patchlevel.h ├── transname.c ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | all 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/README -------------------------------------------------------------------------------- /binhex/.gitignore: -------------------------------------------------------------------------------- 1 | binhex 2 | -------------------------------------------------------------------------------- /binhex/binhex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/binhex/binhex.c -------------------------------------------------------------------------------- /binhex/dofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/binhex/dofile.c -------------------------------------------------------------------------------- /binhex/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/binhex/makefile -------------------------------------------------------------------------------- /comm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/.gitignore -------------------------------------------------------------------------------- /comm/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/comm.h -------------------------------------------------------------------------------- /comm/frommac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/frommac.c -------------------------------------------------------------------------------- /comm/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/globals.c -------------------------------------------------------------------------------- /comm/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/globals.h -------------------------------------------------------------------------------- /comm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/makefile -------------------------------------------------------------------------------- /comm/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/protocol.h -------------------------------------------------------------------------------- /comm/tomac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/tomac.c -------------------------------------------------------------------------------- /comm/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/tty.c -------------------------------------------------------------------------------- /comm/xm_from.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/xm_from.c -------------------------------------------------------------------------------- /comm/xm_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/xm_to.c -------------------------------------------------------------------------------- /comm/ym_from.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/ym_from.c -------------------------------------------------------------------------------- /comm/ym_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/ym_to.c -------------------------------------------------------------------------------- /comm/zm_from.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/zm_from.c -------------------------------------------------------------------------------- /comm/zm_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/comm/zm_to.c -------------------------------------------------------------------------------- /crc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/crc/.gitignore -------------------------------------------------------------------------------- /crc/makecrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/crc/makecrc.c -------------------------------------------------------------------------------- /crc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/crc/makefile -------------------------------------------------------------------------------- /doc/README.crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.crc -------------------------------------------------------------------------------- /doc/README.crc.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.crc.orig -------------------------------------------------------------------------------- /doc/README.hexbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.hexbin -------------------------------------------------------------------------------- /doc/README.macget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.macget -------------------------------------------------------------------------------- /doc/README.macput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.macput -------------------------------------------------------------------------------- /doc/README.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.scan -------------------------------------------------------------------------------- /doc/README.unpit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.unpit -------------------------------------------------------------------------------- /doc/README.unsit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.unsit -------------------------------------------------------------------------------- /doc/README.zoom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/doc/README.zoom -------------------------------------------------------------------------------- /fileio/appledouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/appledouble.h -------------------------------------------------------------------------------- /fileio/aufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/aufs.h -------------------------------------------------------------------------------- /fileio/fileglob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/fileglob.c -------------------------------------------------------------------------------- /fileio/fileglob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/fileglob.h -------------------------------------------------------------------------------- /fileio/kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/kind.h -------------------------------------------------------------------------------- /fileio/machdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/machdr.h -------------------------------------------------------------------------------- /fileio/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/makefile -------------------------------------------------------------------------------- /fileio/rdfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/rdfile.c -------------------------------------------------------------------------------- /fileio/rdfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/rdfile.h -------------------------------------------------------------------------------- /fileio/rdfileopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/rdfileopt.h -------------------------------------------------------------------------------- /fileio/wrfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/wrfile.c -------------------------------------------------------------------------------- /fileio/wrfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/wrfile.h -------------------------------------------------------------------------------- /fileio/wrfileopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/fileio/wrfileopt.h -------------------------------------------------------------------------------- /hexbin/.gitignore: -------------------------------------------------------------------------------- 1 | hexbin 2 | -------------------------------------------------------------------------------- /hexbin/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/buffer.c -------------------------------------------------------------------------------- /hexbin/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/buffer.h -------------------------------------------------------------------------------- /hexbin/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/crc.c -------------------------------------------------------------------------------- /hexbin/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/crc.h -------------------------------------------------------------------------------- /hexbin/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/dl.c -------------------------------------------------------------------------------- /hexbin/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/globals.c -------------------------------------------------------------------------------- /hexbin/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/globals.h -------------------------------------------------------------------------------- /hexbin/hecx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/hecx.c -------------------------------------------------------------------------------- /hexbin/hexbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/hexbin.c -------------------------------------------------------------------------------- /hexbin/hexbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/hexbin.h -------------------------------------------------------------------------------- /hexbin/hqx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/hqx.c -------------------------------------------------------------------------------- /hexbin/hqx.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/hqx.diff -------------------------------------------------------------------------------- /hexbin/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/makefile -------------------------------------------------------------------------------- /hexbin/mu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/mu.c -------------------------------------------------------------------------------- /hexbin/printhdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/printhdr.c -------------------------------------------------------------------------------- /hexbin/printhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/printhdr.h -------------------------------------------------------------------------------- /hexbin/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/hexbin/readline.c -------------------------------------------------------------------------------- /hexbin/readline.h: -------------------------------------------------------------------------------- 1 | extern char line[]; 2 | 3 | -------------------------------------------------------------------------------- /macunpack/.gitignore: -------------------------------------------------------------------------------- 1 | macunpack 2 | -------------------------------------------------------------------------------- /macunpack/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/arc.h -------------------------------------------------------------------------------- /macunpack/bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/bin.c -------------------------------------------------------------------------------- /macunpack/bits_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/bits_be.c -------------------------------------------------------------------------------- /macunpack/bits_be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/bits_be.h -------------------------------------------------------------------------------- /macunpack/cpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/cpt.c -------------------------------------------------------------------------------- /macunpack/cpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/cpt.h -------------------------------------------------------------------------------- /macunpack/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/crc.c -------------------------------------------------------------------------------- /macunpack/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/crc.h -------------------------------------------------------------------------------- /macunpack/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/dd.c -------------------------------------------------------------------------------- /macunpack/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/dd.h -------------------------------------------------------------------------------- /macunpack/de_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/de_compress.c -------------------------------------------------------------------------------- /macunpack/de_huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/de_huffman.c -------------------------------------------------------------------------------- /macunpack/de_lzah.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/de_lzah.c -------------------------------------------------------------------------------- /macunpack/de_lzh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/de_lzh.c -------------------------------------------------------------------------------- /macunpack/dia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/dia.c -------------------------------------------------------------------------------- /macunpack/dia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/dia.h -------------------------------------------------------------------------------- /macunpack/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/dir.c -------------------------------------------------------------------------------- /macunpack/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/globals.c -------------------------------------------------------------------------------- /macunpack/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/globals.h -------------------------------------------------------------------------------- /macunpack/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/huffman.h -------------------------------------------------------------------------------- /macunpack/jdw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/jdw.c -------------------------------------------------------------------------------- /macunpack/jdw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/jdw.h -------------------------------------------------------------------------------- /macunpack/lzc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/lzc.c -------------------------------------------------------------------------------- /macunpack/lzc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/lzc.h -------------------------------------------------------------------------------- /macunpack/lzh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/lzh.c -------------------------------------------------------------------------------- /macunpack/lzh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/lzh.h -------------------------------------------------------------------------------- /macunpack/macbinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/macbinary.c -------------------------------------------------------------------------------- /macunpack/macunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/macunpack.c -------------------------------------------------------------------------------- /macunpack/macunpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/macunpack.h -------------------------------------------------------------------------------- /macunpack/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/makefile -------------------------------------------------------------------------------- /macunpack/mcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/mcb.c -------------------------------------------------------------------------------- /macunpack/pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/pit.c -------------------------------------------------------------------------------- /macunpack/pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/pit.h -------------------------------------------------------------------------------- /macunpack/sit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/sit.c -------------------------------------------------------------------------------- /macunpack/sit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/sit.h -------------------------------------------------------------------------------- /macunpack/stf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/stf.c -------------------------------------------------------------------------------- /macunpack/stf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/stf.h -------------------------------------------------------------------------------- /macunpack/zma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/zma.c -------------------------------------------------------------------------------- /macunpack/zma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/zma.h -------------------------------------------------------------------------------- /macunpack/zmahdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/macunpack/zmahdr.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/makefile -------------------------------------------------------------------------------- /man/binhex.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/man/binhex.1 -------------------------------------------------------------------------------- /man/frommac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/man/frommac.1 -------------------------------------------------------------------------------- /man/hexbin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/man/hexbin.1 -------------------------------------------------------------------------------- /man/macsave.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/man/macsave.1 -------------------------------------------------------------------------------- /man/macstream.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/man/macstream.1 -------------------------------------------------------------------------------- /man/macunpack.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/man/macunpack.1 -------------------------------------------------------------------------------- /man/macutils.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/man/macutils.7 -------------------------------------------------------------------------------- /man/tomac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/man/tomac.1 -------------------------------------------------------------------------------- /mixed/.gitignore: -------------------------------------------------------------------------------- 1 | macsave 2 | macstream 3 | -------------------------------------------------------------------------------- /mixed/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/mixed/dir.c -------------------------------------------------------------------------------- /mixed/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/mixed/globals.c -------------------------------------------------------------------------------- /mixed/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/mixed/globals.h -------------------------------------------------------------------------------- /mixed/macbinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/mixed/macbinary.c -------------------------------------------------------------------------------- /mixed/macsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/mixed/macsave.c -------------------------------------------------------------------------------- /mixed/macstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/mixed/macstream.c -------------------------------------------------------------------------------- /mixed/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/mixed/makefile -------------------------------------------------------------------------------- /mixed/mcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/mixed/mcb.c -------------------------------------------------------------------------------- /util/backtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/util/backtrans.c -------------------------------------------------------------------------------- /util/curtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/util/curtime.h -------------------------------------------------------------------------------- /util/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/util/makefile -------------------------------------------------------------------------------- /util/masks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/util/masks.h -------------------------------------------------------------------------------- /util/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/util/patchlevel.h -------------------------------------------------------------------------------- /util/transname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/util/transname.c -------------------------------------------------------------------------------- /util/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/util/util.c -------------------------------------------------------------------------------- /util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilman/macutils/HEAD/util/util.h --------------------------------------------------------------------------------