Pretty-print a file to the file system.
(pprint-file-to-filesystem file include options filepath state) → (mv erp val state)
We pretty-print the lines and then we write them to the file path.
Function:
(defun pprint-file-to-filesystem (file include options filepath state) (declare (xargs :stobjs (state))) (declare (xargs :guard (and (filep file) (maybe-stringp include) (pprint-options-p options) (stringp filepath)))) (let ((__function__ 'pprint-file-to-filesystem)) (declare (ignorable __function__)) (pprinted-lines-to-file (pprint-file file include options) filepath state)))