/*
 * This source code is part of hsc, a html-preprocessor,
 * Copyright (C) 1995-1997  Thomas Aglassinger
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */
/*
 * hscprj/license.c
 *
 * routines to display license
 *
 * updated: 25-Jan-1997
 * created: 17-Nov-1996
 */

#include <stdio.h>

#include "ugly/utypes.h"

STRPTR hsc_license =            /* the usual boring text */
"\nThis program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2 of the License, or\n"
"(at your option) any later version.\n\n"

"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"GNU General Public License for more details.\n\n"

"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n\n"

/* author address */
"To contact author, write to:\n"
"  Thomas Aglassinger\n"
"  Lissagasse 12/2/9\n"
"  8020 Graz\n"
"  AUSTRIA\n\n"

/* support w3page */
"For support and updates, look at `http://www.giga.or.at/~agi/hsc/'\n\n"
;



/*
 * show_license
 *
 * display short description of GNU GPL
 */
VOID show_license(VOID)
{
    fprintf(stderr, hsc_license);
}

