Blame COPYING

Packit 022b05
Packit 022b05
Copyright (c) 1999-2008 Frank Strauss, Technical University of Braunschweig.
Packit 022b05
Packit 022b05
This software is copyrighted by Frank Strauss, the Technical University
Packit 022b05
of Braunschweig, and other parties.  The following terms apply to all
Packit 022b05
files associated with the software unless explicitly disclaimed in
Packit 022b05
individual files.
Packit 022b05
Packit 022b05
The authors hereby grant permission to use, copy, modify, distribute,
Packit 022b05
and license this software and its documentation for any purpose, provided
Packit 022b05
that existing copyright notices are retained in all copies and that this
Packit 022b05
notice is included verbatim in any distributions. No written agreement,
Packit 022b05
license, or royalty fee is required for any of the authorized uses.
Packit 022b05
Modifications to this software may be copyrighted by their authors
Packit 022b05
and need not follow the licensing terms described here, provided that
Packit 022b05
the new terms are clearly indicated on the first page of each file where
Packit 022b05
they apply.
Packit 022b05
Packit 022b05
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
Packit 022b05
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
Packit 022b05
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
Packit 022b05
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
Packit 022b05
POSSIBILITY OF SUCH DAMAGE.
Packit 022b05
Packit 022b05
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
Packit 022b05
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
Packit 022b05
FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.  THIS SOFTWARE
Packit 022b05
IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
Packit 022b05
NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
Packit 022b05
MODIFICATIONS.
Packit 022b05
Packit 022b05
------------------------------------------------------------------------------
Packit 022b05
Packit 022b05
lib/snprintf.c, lib/snprintf.h:
Packit 022b05
Packit 022b05
 * Copyright (c) 1995-1999 Kungliga Tekniska Högskolan
Packit 022b05
 * (Royal Institute of Technology, Stockholm, Sweden).
Packit 022b05
 * All rights reserved.
Packit 022b05
 * 
Packit 022b05
 * Redistribution and use in source and binary forms, with or without
Packit 022b05
 * modification, are permitted provided that the following conditions
Packit 022b05
 * are met:
Packit 022b05
 * 
Packit 022b05
 * 1. Redistributions of source code must retain the above copyright
Packit 022b05
 *    notice, this list of conditions and the following disclaimer.
Packit 022b05
 * 
Packit 022b05
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 022b05
 *    notice, this list of conditions and the following disclaimer in the
Packit 022b05
 *    documentation and/or other materials provided with the distribution.
Packit 022b05
 * 
Packit 022b05
 * 3. Neither the name of the Institute nor the names of its contributors
Packit 022b05
 *    may be used to endorse or promote products derived from this software
Packit 022b05
 *    without specific prior written permission.
Packit 022b05
 * 
Packit 022b05
 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
Packit 022b05
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 022b05
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit 022b05
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
Packit 022b05
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 022b05
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit 022b05
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit 022b05
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit 022b05
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit 022b05
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit 022b05
 * SUCH DAMAGE.
Packit 022b05
Packit 022b05
------------------------------------------------------------------------------
Packit 022b05
Packit 022b05
tools/shhopt.c, tools/shhopt.h:
Packit 022b05
Packit 022b05
Title:		shhopt - library for parsing command line options.
Packit 022b05
Version:	1.1.2
Packit 022b05
Entered-date:	23MAR97
Packit 022b05
Description:	C-functions for parsing command line options, both
Packit 022b05
                traditional one-character options, and GNU'ish
Packit 022b05
                --long-options.
Packit 022b05
Keywords:	programming, library, lib, commandline, options
Packit 022b05
Author: 	s.h.huseby@usit.uio.no (Sverre H. Huseby)
Packit 022b05
Primary-site:	http://www.ifi.uio.no/~sverrehu/pub-unix/
Packit 022b05
Alternate-site:	sunsite.unc.edu /pub/Linux/libs
Packit 022b05
		shhopt-1.1.2.tar.gz
Packit 022b05
Platforms:	Requires ANSI C-compiler.
Packit 022b05
Copying-policy:	BeerWare: If you have the time and money, send me a bottle
Packit 022b05
		of your favourite beer. If not, just send me a mail or
Packit 022b05
		something. Copy and use as you wish; just leave the
Packit 022b05
		author's name where you find it.
Packit 022b05
Packit 022b05
------------------------------------------------------------------------------
Packit 022b05