home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / in4wjcxu / other / irc / ircd / copyright.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-14  |  1.6 KB  |  29 lines

  1. /*
  2.  * copyright.c:
  3.  *    include a copyright notice in the irc binaries.
  4.  */
  5.  
  6. static char copyright[] =
  7. "\
  8.    IRC - Internet Relay Chat                                            \n\
  9.    Based on Internet Relay Chat v2.0 by Jarkko Oikarinen        \n\
  10.    Copyright (C) 1990, 1991 by Jarkko Oikarinen                         \n\
  11.                                                                         \n\
  12.    This program is free software; you can redistribute it and/or modify \n\
  13.    it under the terms of the GNU General Public License as published by \n\
  14.    the Free Software Foundation; either version 1, or (at your option)  \n\
  15.    any later version.                                                   \n\
  16.                                                                         \n\
  17.    This program is distributed in the hope that it will be useful,      \n\
  18.    but WITHOUT ANY WARRANTY; without even the implied warranty of       \n\
  19.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        \n\
  20.    GNU General Public License for more details.                         \n\
  21.                                                                         \n\
  22.    You should have received a copy of the GNU General Public License    \n\
  23.    along with this program; if not, write to the Free Software          \n\
  24.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.            \n\
  25.                                     \n\
  26.    IRC is free software and you are welcome to distribute copies of it    \n\
  27.    under certain conditions.  Consult the file COPYING, distributed in  \n\
  28.    the source for IRC to see the conditions";
  29.