Blame COPYING

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