ossp-pkg/sio/sio.pod 1.9 -> 1.10
--- sio.pod 2002/12/18 14:58:29 1.9
+++ sio.pod 2003/01/06 19:04:56 1.10
@@ -1,13 +1,11 @@
##
## OSSP sio - Stream I/O
-## Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
-## Copyright (c) 2002 Cable & Wireless Deutschland <http://www.cw.com/de/>
-## Copyright (c) 2002 Ralf S. Engelschall <rse@engelschall.com>
-## Copyright (c) 2002 Michael van Elst <mlelstv@dev.de.cw.net>
+## Copyright (c) 2002-2003 Cable & Wireless Deutschland <http://www.cw.com/de/>
+## Copyright (c) 2002-2003 The OSSP Project <http://www.ossp.org/>
+## Copyright (c) 2002-2003 Ralf S. Engelschall <rse@engelschall.com>
##
-## This file is part of OSSP sio, an abstract data type of
-## a pair of half-duplex data pipes which can be found at
-## http://www.ossp.org/pkg/lib/sio/.
+## This file is part of OSSP sio, a layered stream I/O library
+## which can be found at http://www.ossp.org/pkg/lib/sio/.
##
## Permission to use, copy, modify, and distribute this software for
## any purpose with or without fee is hereby granted, provided that
@@ -562,7 +560,7 @@
sio_rc_t XXX_openr(sio_t *sio, al_t *al, void *u)
{
private_t *my = (private_t *)u;
- ...
+ ...
/* cache reference to input assembly line */
my->al_in = al;
my->state = INIT;
@@ -571,7 +569,7 @@
sio_rc_t XXX_openw(sio_t *sio, al_t *al, void *u)
{
private_t *my = (private_t *)u;
- ...
+ ...
/* cache reference to output assembly line */
my->al_out = al;
my->state = INIT;
|
|