Function: org-time-string-to-seconds

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

Signature

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

Documentation

Convert a timestamp string S into a number of seconds.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-time-string-to-seconds (s)
  "Convert a timestamp string S into a number of seconds."
  (float-time (org-time-string-to-time s)))