Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion binary-types.asd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(defsystem "binary-types"
:description "A library for reading and writing binary records."
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "description.text"))
(uiop:subpathname *load-pathname* "description.txt"))
:version "1.0.1"
:author "Frode V. Fjeld"
:maintainer "Steven Nunez"
Expand Down
7 changes: 7 additions & 0 deletions description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Read and write binary data to streams. This is useful when
interfacing to external systems, like C, or in reading binary file
formats, such as data files or music. Using a declarative syntax you
can define the structure of the binary file, and then load it with all
the definitions populated. There is also a stream based interface for
reading/writing individual elements.

3 changes: 2 additions & 1 deletion pkgdcl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,5 @@
#:*padding-byte* ; [dynamic-var] The value filled in when writing paddings
#:split-bytes ; [func] utility
#:merge-bytes) ; [func] utility
(:documentation "Read and write binary data to streams. This is useful when interfacing to external systems, like C, or in reading binary file formats, such as data files or music. Using a declarative syntax you can define the structure of the binary file, and then load it with all the definitions populated. There is also a stream based interface for reading/writing individual elements."))
(:documentation #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "description.txt"))))