Recognizer for valid fnsyms.
(fnsym-p x) → *
Function:
(defun fnsym-p (x) (declare (xargs :guard t)) (let ((__function__ 'fnsym-p)) (declare (ignorable __function__)) (and (symbolp x) (not (eq x 'quote)) (not (keywordp x)))))
Theorem:
(defthm fnsym-p-compound-recognizer (implies (fnsym-p x) (symbolp x)) :rule-classes :compound-recognizer)