Function: file-attribute-link-number

file-attribute-link-number is a byte-compiled function defined in files.el.gz.

Signature

(file-attribute-link-number ATTRIBUTES)

Documentation

Return the number of links in ATTRIBUTES returned by file-attributes.

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defsubst file-attribute-link-number (attributes)
  "Return the number of links in ATTRIBUTES returned by `file-attributes'."
  (nth 1 attributes))