Find the first occurrence of the string literal in the input stream, and return its position.
We just leave this enabled.
Function:
(defun strin-find (lit x) (declare (xargs :guard (and (stringp lit) (strin-p x)))) (let ((__function__ 'strin-find)) (declare (ignorable __function__)) (listpos (coerce lit 'list) (strin-left x))))