Finish trashinfo.lisp

This commit is contained in:
2025-10-01 00:40:15 -07:00
parent 5ba78e2760
commit 092b0993e7
3 changed files with 170 additions and 37 deletions

View File

@ -11,4 +11,20 @@
(:documentation
"Parser and utility functions for dealing with .trashinfo files.")
(:use :cl)
(:export))
(:import-from #:cl-xdg-trash/url-encode
#:url-encode
#:url-decode)
(:export #:trashinfo-format-error
#:trashinfo-format-error-message
#:trashinfo-format-error-line-numer
#:trashinfo-format-error-context
#:trashinfo-format-error-source-file
#:trashinfo
#:trashinfo-trash-directory
#:trashinfo-name
#:trashinfo-path
#:trashinfo-deletion-date
#:trashinfo-trashed-file
#:parse-trashinfo-from-stream
#:parse-trashinfo-file
#:format-trashinfo))