Function: org-string<>
org-string<> is a byte-compiled function defined in org-macs.el.
Signature
(org-string<> A B)
Documentation
Return non-nil when string A and string B are not equal.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-string<> (a b)
"Return non-nil when string A and string B are not equal."
(not (string= a b)))