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