Function: org-reverse-string
org-reverse-string is a byte-compiled function defined in
org-macs.el.gz.
Signature
(org-reverse-string STRING)
Documentation
Return the reverse of STRING.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-reverse-string (string)
"Return the reverse of STRING."
(apply #'string (nreverse (string-to-list string))))