Forgot the package file.

This commit is contained in:
Kyle 2015-04-13 21:09:49 -07:00
parent d5d4624a2d
commit ac11350309
1 changed files with 29 additions and 0 deletions

29
package.lisp Normal file
View File

@ -0,0 +1,29 @@
;;;; package.lisp
(defpackage #:binary
(:use #:cl)
(:export #:octets
#:uint-from-bytes
#:uint-to-bytes
#:int-from-bytes
#:int-to-bytes
#:read-u32
#:write-u32
#:read-u16
#:write-u16
#:read-u8
#:write-u8
#:read-i32
#:write-i32
#:read-i16
#:write-i16
#:read-i8
#:write-i8
#:U32
#:U16
#:U8
#:I32
#:I16
#:I8
))