diff --git a/nufxlib-0/Archive.c b/nufxlib-0/Archive.c index c9bb014..8adc656 100644 --- a/nufxlib-0/Archive.c +++ b/nufxlib-0/Archive.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Archive structure creation and manipulation. */ diff --git a/nufxlib-0/ArchiveIO.c b/nufxlib-0/ArchiveIO.c index 2435cc6..6f885bc 100644 --- a/nufxlib-0/ArchiveIO.c +++ b/nufxlib-0/ArchiveIO.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Functions for reading from and writing to the archive. These are * specialized functions that deal with byte ordering and CRC computation. diff --git a/nufxlib-0/Bzip2.c b/nufxlib-0/Bzip2.c index 29b8c97..ba16fa5 100644 --- a/nufxlib-0/Bzip2.c +++ b/nufxlib-0/Bzip2.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Support for the "bzip2" (BTW+Huffman) algorithm, via "libbz2". * diff --git a/nufxlib-0/Compress.c b/nufxlib-0/Compress.c index b191170..eb8fc90 100644 --- a/nufxlib-0/Compress.c +++ b/nufxlib-0/Compress.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Compress data into an archive. */ diff --git a/nufxlib-0/Crc16.c b/nufxlib-0/Crc16.c index 81642df..aca3afc 100644 --- a/nufxlib-0/Crc16.c +++ b/nufxlib-0/Crc16.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Compute 16-bit CRCs. Depending on the hardware, the table version * might be slower than the loop computation. diff --git a/nufxlib-0/Debug.c b/nufxlib-0/Debug.c index bdc69c9..a30b454 100644 --- a/nufxlib-0/Debug.c +++ b/nufxlib-0/Debug.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Debugging functions. These are omitted from the non-debug build. */ diff --git a/nufxlib-0/Deferred.c b/nufxlib-0/Deferred.c index 8a693ef..cefefc5 100644 --- a/nufxlib-0/Deferred.c +++ b/nufxlib-0/Deferred.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Deferred write handling. */ diff --git a/nufxlib-0/Deflate.c b/nufxlib-0/Deflate.c index 92bc39d..b2223bb 100644 --- a/nufxlib-0/Deflate.c +++ b/nufxlib-0/Deflate.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Support for the "deflate" algorithm, via the "zlib" library. * diff --git a/nufxlib-0/Entry.c b/nufxlib-0/Entry.c index 39e5f4a..141f8d4 100644 --- a/nufxlib-0/Entry.c +++ b/nufxlib-0/Entry.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * All external entry points. */ diff --git a/nufxlib-0/Expand.c b/nufxlib-0/Expand.c index 5e9507b..cea6752 100644 --- a/nufxlib-0/Expand.c +++ b/nufxlib-0/Expand.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Expand a thread from an archive. */ diff --git a/nufxlib-0/FileIO.c b/nufxlib-0/FileIO.c index 28c7971..13e8685 100644 --- a/nufxlib-0/FileIO.c +++ b/nufxlib-0/FileIO.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Operations on output (i.e. non-archive) files, largely system-specific. * Portions taken from NuLib, including some code that Devin Reade worked on. diff --git a/nufxlib-0/Funnel.c b/nufxlib-0/Funnel.c index 28be9ff..0422513 100644 --- a/nufxlib-0/Funnel.c +++ b/nufxlib-0/Funnel.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Implementation of NuFunnel, NuStraw and ProgressUpdater. */ diff --git a/nufxlib-0/Lzc.c b/nufxlib-0/Lzc.c index eb01ae2..be5f1b4 100644 --- a/nufxlib-0/Lzc.c +++ b/nufxlib-0/Lzc.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * This is the LZW implementation found in the UNIX "compress" command, * sometimes referred to as "LZC". GS/ShrinkIt v1.1 can unpack threads diff --git a/nufxlib-0/Lzw.c b/nufxlib-0/Lzw.c index 336ff16..3af0bf3 100644 --- a/nufxlib-0/Lzw.c +++ b/nufxlib-0/Lzw.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * ShrinkIt LZW functions. The original code was developed by Kent Dickey * and Andy Nicholas. diff --git a/nufxlib-0/Makefile.in b/nufxlib-0/Makefile.in index d9a3dff..66cfc13 100644 --- a/nufxlib-0/Makefile.in +++ b/nufxlib-0/Makefile.in @@ -1,10 +1,17 @@ # -# Makefile for nufxlib stuff (should work with non-GNU "make"). +# NuFX archive manipulation library +# Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. +# This is free software; you can redistribute it and/or modify it under the +# terms of the GNU Library General Public License, see the file COPYING-LIB. +# +# Makefile for nufxlib (should work with non-GNU "make"). # # You can use: # make (builds library and sample applications) # make shared (builds shared library if you're using GNU ld or similar) # +# The shared library support currently leaves much to be desired. +# # NufxLib install location. prefix = @prefix@ diff --git a/nufxlib-0/MiscStuff.c b/nufxlib-0/MiscStuff.c index 08544e2..aafd523 100644 --- a/nufxlib-0/MiscStuff.c +++ b/nufxlib-0/MiscStuff.c @@ -1,7 +1,7 @@ /* - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Misc stuff (shared between nufxlib and nulib2). This is a collection * of standard functions that aren't available in libc on this system. diff --git a/nufxlib-0/MiscStuff.h b/nufxlib-0/MiscStuff.h index 142c8e1..883e58c 100644 --- a/nufxlib-0/MiscStuff.h +++ b/nufxlib-0/MiscStuff.h @@ -1,7 +1,7 @@ /* - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Misc stuff (shared between nufxlib and nulib2). This is a collection * of miscellaneous types and macros that I find generally useful. @@ -9,7 +9,7 @@ #ifndef __MiscStuff__ #define __MiscStuff__ -#define VALGRIND /* let's just assume we're using it */ +#define VALGRIND /* assume we're using it */ #include "SysDefs.h" diff --git a/nufxlib-0/MiscUtils.c b/nufxlib-0/MiscUtils.c index c6c607c..1bc54bc 100644 --- a/nufxlib-0/MiscUtils.c +++ b/nufxlib-0/MiscUtils.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Miscellaneous NufxLib utility functions. */ diff --git a/nufxlib-0/NufxLib.h b/nufxlib-0/NufxLib.h index f57ec34..d4ca524 100644 --- a/nufxlib-0/NufxLib.h +++ b/nufxlib-0/NufxLib.h @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * External interface (types, defines, and function prototypes). */ diff --git a/nufxlib-0/NufxLibPriv.h b/nufxlib-0/NufxLibPriv.h index 2eb2fc3..5125e60 100644 --- a/nufxlib-0/NufxLibPriv.h +++ b/nufxlib-0/NufxLibPriv.h @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Global internal declarations and definitions. */ diff --git a/nufxlib-0/README.txt b/nufxlib-0/README.txt index c967b28..8a5edcb 100644 --- a/nufxlib-0/README.txt +++ b/nufxlib-0/README.txt @@ -1,4 +1,4 @@ -NufxLib README, updated 2000/05/18 +NufxLib README, updated 2002/10/11 http://www.nulib.com/ See "COPYING-LIB" for distribution restrictions. @@ -98,15 +98,21 @@ define it by default.) Legalese ======== -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS -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 AUTHOR 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. +NufxLib, a NuFX archive manipulation library +Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with this library; if not, write to the Free +Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +MA 02111-1307, USA diff --git a/nufxlib-0/Record.c b/nufxlib-0/Record.c index 3b7bacc..b7c4241 100644 --- a/nufxlib-0/Record.c +++ b/nufxlib-0/Record.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Record-level operations. */ diff --git a/nufxlib-0/SourceSink.c b/nufxlib-0/SourceSink.c index a099fdf..f557bd1 100644 --- a/nufxlib-0/SourceSink.c +++ b/nufxlib-0/SourceSink.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Implementation of DataSource and DataSink objects. */ diff --git a/nufxlib-0/Squeeze.c b/nufxlib-0/Squeeze.c index 198e0ff..51b61c7 100644 --- a/nufxlib-0/Squeeze.c +++ b/nufxlib-0/Squeeze.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2002 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Huffman/RLE "squeeze" compression, based on SQ/USQ. This format is * listed in the NuFX documentation, but to my knowledge has never diff --git a/nufxlib-0/SunOS4.h b/nufxlib-0/SunOS4.h index 22467d1..2d6dca5 100644 --- a/nufxlib-0/SunOS4.h +++ b/nufxlib-0/SunOS4.h @@ -1,8 +1,7 @@ /* - * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * This file was adapted from Devin Reade's "sunos4.h" in NuLib 3.2.5. * It is provided for compilation under SunOS 4.x, when an ANSI compiler diff --git a/nufxlib-0/SysDefs.h b/nufxlib-0/SysDefs.h index 322c6bc..2a697dc 100644 --- a/nufxlib-0/SysDefs.h +++ b/nufxlib-0/SysDefs.h @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * External type definitions and function prototypes. */ diff --git a/nufxlib-0/Thread.c b/nufxlib-0/Thread.c index 8dc3f9c..84e2710 100644 --- a/nufxlib-0/Thread.c +++ b/nufxlib-0/Thread.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Thread-level operations. */ diff --git a/nufxlib-0/Value.c b/nufxlib-0/Value.c index e11d75c..ba2ef62 100644 --- a/nufxlib-0/Value.c +++ b/nufxlib-0/Value.c @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * Get/set certain values and attributes. */ diff --git a/nufxlib-0/Version.c.in b/nufxlib-0/Version.c.in index e9c52bc..a05eebc 100644 --- a/nufxlib-0/Version.c.in +++ b/nufxlib-0/Version.c.in @@ -1,8 +1,8 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU Library General Public License, see the file COPYING.LIB. + * terms of the GNU Library General Public License, see the file COPYING-LIB. * * !!! NOTE !!! * The file Version.c is automatically generated from Version.c.in. Don't diff --git a/nufxlib-0/config.h.in b/nufxlib-0/config.h.in index bc58c1c..4ed6e37 100644 --- a/nufxlib-0/config.h.in +++ b/nufxlib-0/config.h.in @@ -1,3 +1,9 @@ +/* + * NuFX archive manipulation library + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. + * This is free software; you can redistribute it and/or modify it under the + * terms of the GNU Library General Public License, see the file COPYING-LIB. + */ /* config.h.in. */ /* Define to empty if the keyword does not work. */ diff --git a/nufxlib-0/configure.in b/nufxlib-0/configure.in index 92d8a32..ee0131d 100644 --- a/nufxlib-0/configure.in +++ b/nufxlib-0/configure.in @@ -1,7 +1,7 @@ dnl NuFX archive manipulation library -dnl Copyright (C) 2000 by Andy McFadden, All Rights Reserved. +dnl Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. dnl This is free software; you can redistribute it and/or modify it under the -dnl terms of the GNU Library General Public License, see the file COPYING.LIB. +dnl terms of the GNU Library General Public License, see the file COPYING-LIB. dnl dnl Process this file with autoconf to produce a configure script. diff --git a/nufxlib-0/samples/Common.h b/nufxlib-0/samples/Common.h index 3d8d7fe..02a3771 100644 --- a/nufxlib-0/samples/Common.h +++ b/nufxlib-0/samples/Common.h @@ -1,6 +1,6 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the * terms of the GNU Library General Public License, see the file COPYING.LIB. * diff --git a/nufxlib-0/samples/Exerciser.c b/nufxlib-0/samples/Exerciser.c index c817768..5798614 100644 --- a/nufxlib-0/samples/Exerciser.c +++ b/nufxlib-0/samples/Exerciser.c @@ -1,6 +1,6 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the * terms of the GNU Library General Public License, see the file COPYING.LIB. * diff --git a/nufxlib-0/samples/ImgConv.c b/nufxlib-0/samples/ImgConv.c index 981c012..3520e8f 100644 --- a/nufxlib-0/samples/ImgConv.c +++ b/nufxlib-0/samples/ImgConv.c @@ -1,6 +1,6 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the * terms of the GNU Library General Public License, see the file COPYING.LIB. * diff --git a/nufxlib-0/samples/Launder.c b/nufxlib-0/samples/Launder.c index ff5b665..1d1adbb 100644 --- a/nufxlib-0/samples/Launder.c +++ b/nufxlib-0/samples/Launder.c @@ -1,6 +1,6 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the * terms of the GNU Library General Public License, see the file COPYING.LIB. * diff --git a/nufxlib-0/samples/TestBasic.c b/nufxlib-0/samples/TestBasic.c index e6b2bff..1771953 100644 --- a/nufxlib-0/samples/TestBasic.c +++ b/nufxlib-0/samples/TestBasic.c @@ -1,6 +1,6 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the * terms of the GNU Library General Public License, see the file COPYING.LIB. * diff --git a/nufxlib-0/samples/TestExtract.c b/nufxlib-0/samples/TestExtract.c index b6ee336..1a8683b 100644 --- a/nufxlib-0/samples/TestExtract.c +++ b/nufxlib-0/samples/TestExtract.c @@ -1,6 +1,6 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the * terms of the GNU Library General Public License, see the file COPYING.LIB. * diff --git a/nufxlib-0/samples/TestSimple.c b/nufxlib-0/samples/TestSimple.c index cb00289..67c63d0 100644 --- a/nufxlib-0/samples/TestSimple.c +++ b/nufxlib-0/samples/TestSimple.c @@ -1,6 +1,6 @@ /* * NuFX archive manipulation library - * Copyright (C) 2000 by Andy McFadden, All Rights Reserved. + * Copyright (C) 2000-2002 by Andy McFadden, All Rights Reserved. * This is free software; you can redistribute it and/or modify it under the * terms of the GNU Library General Public License, see the file COPYING.LIB. *