See if some string literal occurs (case sensitively) at the start of the input stream.
We just leave this enabled.
Function:
(defun strin-matches-p (lit x) (declare (xargs :guard (and (stringp lit) (strin-p x)))) (let ((__function__ 'strin-matches-p)) (declare (ignorable __function__)) (prefixp (coerce lit 'list) (strin-left x))))