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