Function: org-uuidgen-p

org-uuidgen-p is a byte-compiled function defined in org.el.gz.

Signature

(org-uuidgen-p S)

Documentation

Is S an ID created by UUIDGEN?

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-uuidgen-p (s)
  "Is S an ID created by UUIDGEN?"
  (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))