Function: org-time-string-to-time

org-time-string-to-time is a byte-compiled function defined in org.el.gz.

Signature

(org-time-string-to-time S)

Documentation

Convert timestamp string S into internal time.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-time-string-to-time (s)
  "Convert timestamp string S into internal time."
  (org-encode-time (org-parse-time-string s)))