Function: hexl-htoi

hexl-htoi is a byte-compiled function defined in hexl.el.gz.

Signature

(hexl-htoi LH RH)

Documentation

Hex (char) LH (char) RH to integer.

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-htoi (lh rh)
  "Hex (char) LH (char) RH to integer."
    (+ (* (hexl-hex-char-to-integer lh) 16)
       (hexl-hex-char-to-integer rh)))