A few fixes.
[iolib.git] / io.streams / pkgdcl.lisp
blob6533f03abb913cc76a60bb382e7b9784651e03ce
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Indent-tabs-mode: NIL -*-
2 ;;;
3 ;;; package.lisp --- Package definition.
4 ;;;
5 ;;; Copyright (C) 2006-2007, Stelian Ionescu <sionescu@common-lisp.net>
6 ;;;
7 ;;; This code is free software; you can redistribute it and/or
8 ;;; modify it under the terms of the version 2.1 of
9 ;;; the GNU Lesser General Public License as published by
10 ;;; the Free Software Foundation, as clarified by the
11 ;;; preamble found here:
12 ;;; http://opensource.franz.com/preamble.html
13 ;;;
14 ;;; This program is distributed in the hope that it will be useful,
15 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;;; GNU General Public License for more details.
18 ;;;
19 ;;; You should have received a copy of the GNU Lesser General
20 ;;; Public License along with this library; if not, write to the
21 ;;; Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22 ;;; Boston, MA 02110-1301, USA
24 (in-package :common-lisp-user)
26 (defpackage :io.streams
27 (:use #:common-lisp :cffi :alexandria :trivial-gray-streams)
28 (:export
29 ;; Classes
30 #:dual-channel-fd-mixin
31 #:dual-channel-gray-stream
32 #:dual-channel-single-fd-mixin
33 #:dual-channel-single-fd-gray-stream
35 ;; Types
36 #:sb16
37 #:sb32
38 #:sb8
39 #:ub16
40 #:ub16-sarray
41 #:ub32
42 #:ub8
43 #:ub8-sarray
44 #:ub8-vector
46 ;; Accessors
47 #:external-format-of
48 #:fd-non-blocking
49 #:fd-of
50 #:input-fd-non-blocking
51 #:input-fd-of
52 #:output-fd-non-blocking
53 #:output-fd-of
55 #:read-sequence*
56 #:write-sequence*