-
Notifications
You must be signed in to change notification settings - Fork 7
/
packages.lisp
40 lines (37 loc) · 962 Bytes
/
packages.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;;
;; Copyright (c) 2005, Gigamonkeys Consulting All rights reserved.
;;
(in-package :cl-user)
(defpackage :com.gigamonkeys.binary-data
(:use :common-lisp :alexandria)
(:nicknames :binary-data)
(:export :define-binary-class
:define-tagged-binary-class
:define-binary-type
:define-enumeration
:read-value
:write-value
:*in-progress-objects*
:parent-of-type
:immediate-parent
:current-binary-object
:+null+))
(defpackage :com.gigamonkeys.binary-data.common-datatypes
(:use :common-lisp :com.gigamonkeys.binary-data)
(:export
:u1
:u2
:u3
:u4
:generic-string
:generic-terminated-string
:iso-8859-1-char
:iso-8859-1-string
:iso-8859-1-terminated-string
:ucs-2-char
:ucs-2-char-big-endian
:ucs-2-char-little-endian
:ucs-2-char-type
:ucs-2-string
:ucs-2-terminated-string
:unsigned-integer))