Function: exif--read-number
exif--read-number is a byte-compiled function defined in exif.el.gz.
Signature
(exif--read-number BYTES LITTLE-ENDIAN)
Documentation
Read BYTES octets from current buffer with endianness given by LITTLE-ENDIAN.
Advance point to after the read bytes. This function assumes that the current buffer is unibyte.
Source Code
;; Defined in /usr/src/emacs/lisp/image/exif.el.gz
(defun exif--read-number (bytes little-endian)
"Read BYTES octets from current buffer with endianness given by LITTLE-ENDIAN.
Advance point to after the read bytes.
This function assumes that the current buffer is unibyte."
(if little-endian
(exif--read-number-le bytes)
(exif--read-number-be bytes)))