home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / text / hyper / hsc_source.lha / hsc / source / hscprj / license.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-25  |  2.0 KB  |  68 lines

  1. /*
  2.  * hscprj/license.c
  3.  *
  4.  * routines to display license
  5.  *
  6.  * Copyright (C) 1995,96  Thomas Aglassinger
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  * updated: 25-Jan-1997
  23.  * created: 17-Nov-1996
  24.  */
  25.  
  26. #include <stdio.h>
  27.  
  28. #include "ugly/utypes.h"
  29.  
  30. STRPTR hsc_license =            /* the usual boring text */
  31. "\nThis program is free software; you can redistribute it and/or modify\n"
  32. "it under the terms of the GNU General Public License as published by\n"
  33. "the Free Software Foundation; either version 2 of the License, or\n"
  34. "(at your option) any later version.\n\n"
  35.  
  36. "This program is distributed in the hope that it will be useful,\n"
  37. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  38. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
  39. "GNU General Public License for more details.\n\n"
  40.  
  41. "You should have received a copy of the GNU General Public License\n"
  42. "along with this program; if not, write to the Free Software\n"
  43. "Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n\n"
  44.  
  45. /* author address */
  46. "To contact author, use:\n"
  47. "  Thomas Aglassinger\n"
  48. "  Lissagasse 12/2/9\n"
  49. "  8020 Graz\n"
  50. "  AUSTRIA\n\n"
  51.  
  52. /* support w3page */
  53. "For support and updates, look at `http://www.giga.or.at/~agi/hsc/'\n\n"
  54. ;
  55.  
  56.  
  57.  
  58. /*
  59.  * show_license
  60.  *
  61.  * display short description of GNU GPL
  62.  */
  63. VOID show_license(VOID)
  64. {
  65.     fprintf(stderr, hsc_license);
  66. }
  67.  
  68.