OSSP CVS Repository

ossp - Check-in [2596]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 2596
Date: 2002-Oct-16 14:37:08 (local)
2002-Oct-16 12:37:08 (UTC)
User:rse
Branch:
Comment: add the usual amount of license fun
Tickets:
Inspections:
Files:
ossp-pkg/sio/al.c      1.13 -> 1.14     31 inserted, 0 deleted
ossp-pkg/sio/al.h      1.6 -> 1.7     37 inserted, 0 deleted
ossp-pkg/sio/al.pod      1.2 -> 1.3     5 inserted, 2 deleted
ossp-pkg/sio/al_test.c      1.5 -> 1.6     31 inserted, 0 deleted

ossp-pkg/sio/al.c 1.13 -> 1.14

--- al.c 2002/10/16 11:45:30     1.13
+++ al.c 2002/10/16 12:37:08     1.14
@@ -1,3 +1,34 @@
+/*
+**  OSSP al -- Assembly Lists
+**  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>
+**
+**  This file is part of OSSP al, an abstract datatype of a data buffer
+**  that can assemble, move and truncate data but avoids actual copying.
+**
+**  Permission to use, copy, modify, and distribute this software for
+**  any purpose with or without fee is hereby granted, provided that
+**  the above copyright notice and this permission notice appear in all
+**  copies.
+**
+**  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+**  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+**  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+**  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+**  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+**  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+**  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+**  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+**  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+**  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+**  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+**  SUCH DAMAGE.
+**
+**  al.c: assembly lists library implementation
+*/
+
 #include <stddef.h>
 #include <stdlib.h>
 #include <string.h>


ossp-pkg/sio/al.h 1.6 -> 1.7

--- al.h 2002/10/16 11:13:54     1.6
+++ al.h 2002/10/16 12:37:08     1.7
@@ -1,3 +1,37 @@
+/*
+**  OSSP al -- Assembly Lists
+**  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>
+**
+**  This file is part of OSSP al, an abstract datatype of a data buffer
+**  that can assemble, move and truncate data but avoids actual copying.
+**
+**  Permission to use, copy, modify, and distribute this software for
+**  any purpose with or without fee is hereby granted, provided that
+**  the above copyright notice and this permission notice appear in all
+**  copies.
+**
+**  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+**  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+**  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+**  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+**  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+**  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+**  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+**  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+**  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+**  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+**  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+**  SUCH DAMAGE.
+**
+**  al.h: assembly lists public API definition
+*/
+
+#ifndef __AL_H__
+#define __AL_H__
+
 typedef enum {
     AL_OK,
     AL_ERR_ARG,
@@ -41,3 +75,6 @@
 char *al_chunk_ptr(al_chunk_t *alc, size_t off);
 
 const char *al_error(al_rc_t rc);
+
+#endif /* __AL_H__ */
+


ossp-pkg/sio/al.pod 1.2 -> 1.3

--- al.pod       2002/10/16 11:50:42     1.2
+++ al.pod       2002/10/16 12:37:08     1.3
@@ -1,8 +1,9 @@
 ##
 ##  OSSP al - Assembly Lists
-##  Copyright (c) 2002 Michael van Elst <mlelstv@dev.de.cw.net>
 ##  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>
 ##
 ##  This file is part of OSSP al, an abstract datatype of a data buffer
 ##  that can assemble, move and truncate data but avoids actual copying.
@@ -388,7 +389,9 @@
 =head1 HISTORY
 
 B<OSSP al> was invented in October 2002 by Michael van Elst
-E<lt>mlelstv@dev.de.cw.netE<gt> for use inside the OSSP project.
+E<lt>mlelstv@dev.de.cw.netE<gt> under contract with Cable & Wireless
+Germany E<lt>http://www.cw.com/deE<gt> for use inside the OSSP project
+E<lt>http://www.ossp.org/E<gt>.
 
 =head1 AUTHORS
 


ossp-pkg/sio/al_test.c 1.5 -> 1.6

--- al_test.c    2002/10/14 15:41:37     1.5
+++ al_test.c    2002/10/16 12:37:08     1.6
@@ -1,3 +1,34 @@
+/*
+**  OSSP al -- Assembly Lists
+**  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>
+**
+**  This file is part of OSSP al, an abstract datatype of a data buffer
+**  that can assemble, move and truncate data but avoids actual copying.
+**
+**  Permission to use, copy, modify, and distribute this software for
+**  any purpose with or without fee is hereby granted, provided that
+**  the above copyright notice and this permission notice appear in all
+**  copies.
+**
+**  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+**  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+**  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+**  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+**  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+**  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+**  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+**  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+**  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+**  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+**  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+**  SUCH DAMAGE.
+**
+**  al_test.c: assembly lists library, minimal test suite
+*/
+
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>

CVSTrac 2.0.1