File: binhex.el.html
BinHex is a binary-to-text encoding scheme similar to uuencode.
It was used on the classic Mac OS, last released in 2001.
The command binhex-decode-region decodes BinHex-encoded text, via
the external program "hexbin" if that is available, or an Emacs
Lisp implementation if not.
See also: https://en.wikipedia.org/wiki/BinHex
Defined variables (4)
binhex-begin-line | Regular expression matching the start of a BinHex encoded region. |
binhex-decoder-program | Non-nil value should be a string that names a binhex decoder. |
binhex-decoder-switches | List of command line flags passed to the command ‘binhex-decoder-program’. |
binhex-use-external | Use external binhex program. |
Defined functions (12)
binhex-char-int | (ARGUMENT) |
binhex-char-map | (CHAR) |
binhex-decode-region | (START END) |
binhex-decode-region-external | (START END) |
binhex-decode-region-internal | (START END &optional HEADER-ONLY) |
binhex-header | (BUFFER) |
binhex-insert-char | (CHAR &optional COUNT IGNORED BUFFER) |
binhex-push-char | (CHAR &optional IGNORED BUFFER) |
binhex-string-big-endian | (STRING) |
binhex-string-little-endian | (STRING) |
binhex-update-crc | (CRC CHAR &optional COUNT) |
binhex-verify-crc | (BUFFER START END) |