Function:
(defun hrp-valid-string-length-p (s) (declare (xargs :guard (stringp s))) (let ((__function__ 'hrp-valid-string-length-p)) (declare (ignorable __function__)) (let ((slen (length s))) (and (<= 1 slen) (<= slen 83)))))
Theorem:
(defthm booleanp-of-hrp-valid-string-length-p (b* ((y/n (hrp-valid-string-length-p s))) (booleanp y/n)) :rule-classes :rewrite)