Basic constructor macro for c-char-escape structures.
(make-c-char-escape [:escape <escape>])
This is the usual way to construct c-char-escape structures. It simply conses together a structure with the specified fields.
This macro generates a new c-char-escape structure from scratch. See also change-c-char-escape, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-c-char-escape (&rest args) (std::make-aggregate 'c-char-escape args '((:escape)) 'make-c-char-escape nil))
Function:
(defun c-char-escape (escape) (declare (xargs :guard (escapep escape))) (declare (xargs :guard t)) (b* ((escape (mbe :logic (escape-fix escape) :exec escape))) (cons :escape escape)))