-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.lisp
39 lines (32 loc) · 976 Bytes
/
package.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
(defpackage :chipz
(:use :cl)
(:export #:decompression-state
#:inflate-state
#:bzip2-state
#:make-dstate
#:finish-dstate
;; Only for API compatibility
#:make-inflate-state
#:finish-inflate-state
;; Main user-visible entry point
#:decompress
;; Symbols for EQL specializers
#:deflate
#:zlib
#:gzip
#:bzip2
;; Gray streams
#:make-decompressing-stream
;; conditions
#:chipz-error
#:invalid-format-error
#:decompression-error
#:invalid-checksum-error
#:premature-end-of-stream
#:inflate-error
#:invalid-zlib-header-error
#:invalid-gzip-header-error
#:reserved-block-type-error
#:invalid-stored-block-length-error
#:bzip2-error
#:invalid-bzip2-data))