Basic constructor macro for newline-crlf structures.
(make-newline-crlf )
This is the usual way to construct newline-crlf structures. It simply conses together a structure with the specified fields.
This macro generates a new newline-crlf structure from scratch. See also change-newline-crlf, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-newline-crlf (&rest args) (std::make-aggregate 'newline-crlf args 'nil 'make-newline-crlf nil))
Function:
(defun newline-crlf nil (declare (xargs :guard t)) (cons :crlf (list)))