Initial revision
This commit is contained in:
41
xml/package.lisp
Normal file
41
xml/package.lisp
Normal file
@ -0,0 +1,41 @@
|
||||
(in-package :cl-user)
|
||||
|
||||
(defpackage :Encoding
|
||||
(:use :glisp)
|
||||
(:export
|
||||
#:find-encoding
|
||||
#:decode-sequence))
|
||||
|
||||
(defpackage :XML
|
||||
(:use
|
||||
:glisp
|
||||
:encoding)
|
||||
|
||||
(:Export
|
||||
;; xstreams
|
||||
#:make-xstream
|
||||
#:make-rod-xstream
|
||||
#:close-xstream
|
||||
#:read-rune
|
||||
#:peek-rune
|
||||
#:unread-rune
|
||||
#:fread-rune
|
||||
#:fpeek-rune
|
||||
#:xstream-position
|
||||
#:xstream-line-number
|
||||
#:xstream-column-number
|
||||
#:xstream-plist
|
||||
#:xstream-encoding
|
||||
|
||||
;; xstream controller protocol
|
||||
#:read-octects
|
||||
#:xstream/close
|
||||
|
||||
#:attribute-namespace-uri
|
||||
#:attribute-local-name
|
||||
#:attribute-qname
|
||||
#:attribute-value
|
||||
|
||||
#:parse-file
|
||||
#:parse-stream
|
||||
#:parse-string) )
|
||||
Reference in New Issue
Block a user