Recognizer for vl-sysfunname structures.
(vl-sysfunname-p x) → *
Function:
(defun vl-sysfunname-p (x) (declare (xargs :guard t)) (let ((__function__ 'vl-sysfunname-p)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :vl-sysfunname) (b* ((name (cdr x))) (stringp name)))))
Theorem:
(defthm consp-when-vl-sysfunname-p (implies (vl-sysfunname-p x) (consp x)) :rule-classes :compound-recognizer)