home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / txict100.zip / texicvt1.00 / source / version.cc < prev    next >
C/C++ Source or Header  |  1997-03-31  |  6KB  |  145 lines

  1. /*
  2. ================================================================================
  3.                         Texinfo converting Tools
  4.                          Release 1.00 28.03.97
  5.                        (c) 1996 by Andreas Kaiser
  6.                     (c) 1997 by Karl Heinz Marbaise
  7. ================================================================================
  8.  
  9. Discription:
  10.     PrintCopyright function; print out version
  11.     copyright; author and registration rules.
  12.  
  13. Authors:
  14.    Andreas Kaiser
  15.    Karl Heinz Marbaise
  16.  
  17. e-mail:
  18.    Internet: KHMarbaise@p69.ks.fido.de
  19.    Fido-net: 2:2452/117.69
  20.  
  21. Bugs, question:
  22.    to above e-mail adress.
  23.  
  24. Register:
  25.    Please send a e-mail to above adress to register.
  26.    (include the release you want to register)
  27.    This registration should be done to let me
  28.    know how many people using these tools and
  29.    if it is worth to invest more time in continuing
  30.    development these tools or let the first release
  31.    of them be the last.
  32.    That is the only reason to make a registration.
  33.    I think a e-mail is not to much, isn't it?
  34.  
  35. License:
  36.    The "Texinfo converting tools" are free software;
  37.    you can redistribute it and/or modify it under the terms of
  38.    the GNU General Public License as published by the Free
  39.    Software Foundation; either version 2, or (at your option)
  40.    any later version.
  41.  
  42.    The "Texinfo converting tools" are distributed in the hope that
  43.    they will be useful, but WITHOUT ANY WARRANTY; without even the
  44.    implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  45.    PURPOSE.  See the GNU General Public License for more details.
  46.  
  47.    You should have received a copy of the GNU General Public License
  48.    along with the "Texinfo converting tools" ; see the file COPYING.
  49.    If not, write to the:
  50.    Free Software Foundation,
  51.    59 Temple Place - Suite 330,
  52.    Boston, MA 02111-1307, USA.
  53.  
  54.    See \texicvt1.00\COPYING for details.
  55.  
  56. ================================================================================
  57. */
  58.  
  59.  
  60. /*
  61. ------------------------------------------------------------------------------
  62.                       (R)evision (C)ontrol (S)ystem
  63. ------------------------------------------------------------------------------
  64. */
  65.  
  66. #ifdef __RCS__
  67. static const char *version_cc = "$Id: VERSION.CC 1.4 1997/03/31 20:45:31 KHM Exp $";
  68. #endif
  69.  
  70. /*--------------------------------------------------------------------------*/
  71. /*                             Include Files                                */
  72. /*--------------------------------------------------------------------------*/
  73. #include <stdio.h>
  74.  
  75. #include <version.h>
  76.  
  77. /*--------------------------------------------------------------------------*/
  78. /*                                Defines                                   */
  79. /*--------------------------------------------------------------------------*/
  80.  
  81.  
  82. static  char  *descr[] =
  83. {
  84.     "===============================================================================",
  85.     "                        Texinfo converting Tools",
  86.     "                         Release 1.00  28.03.97",
  87.     "                       (c) 1996 by Andreas Kaiser",
  88.     "                    (c) 1997 by Karl Heinz Marbaise",
  89.     "===============================================================================",
  90.     "",
  91.     "Discription:",
  92.     "   These are the Texinfo converting Tools which are",
  93.     "   used to convert, the widly available documentations",
  94.     "   in Texinfo, to OS/2-IPF, HTML (beta) and RTF (Gamma?)",
  95.     "",
  96.     "Authors:",
  97.     "   Andreas Kaiser",
  98.     "   Karl Heinz Marbaise",
  99.     "",
  100.     "e-mail:",
  101.     "   Internet: KHMarbaise@p69.ks.fido.de",
  102.     "   Fido-net: 2:2452/117.69",
  103.     "",
  104.     "Bugs, question:",
  105.     "   to above e-mail adress.",
  106.     "",
  107.     "Register:",
  108.     "   Please send a e-mail to above adress to register.",
  109.     "   (include the release you want to register)",
  110.     "   This registration should be done to let me",
  111.     "   know how many people using these tools and",
  112.     "   if it is worth to invest more time in continuing",
  113.     "   development these tools or let the first release",
  114.     "   of them be the last.",
  115.     "   That is the only reason to make a registration.",
  116.     "   I think a e-mail is not to much, isn't it?",
  117.     "",
  118.     "License:",
  119.     "   The \"Texinfo converting tools\" are free software;",
  120.     "   you can redistribute it and/or modify it under the terms of",
  121.     "   the GNU General Public License as published by the Free",
  122.     "   Software Foundation; either version 2, or (at your option)",
  123.     "   any later version.",
  124.     "",
  125.     "   The \"Texinfo converting tools\" are distributed in the hope that",
  126.     "   they will be useful, but WITHOUT ANY WARRANTY; without even the",
  127.     "   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR",
  128.     "   PURPOSE.  See the GNU General Public License for more details.",
  129.     "",
  130.     "   You should have received a copy of the GNU General Public License",
  131.     "   along with the \"Texinfo converting tools\"; see the file COPYING.",
  132.     "   If not, write to the:",
  133.     "   Free Software Foundation,",
  134.     "   59 Temple Place - Suite 330,",
  135.     "   Boston, MA 02111-1307, USA.",
  136.     "",
  137.     "   See \\texicvt1.00\\COPYING for details.",
  138.     "",
  139.     "================================================================================"
  140. };
  141. static int  dl = sizeof(descr) / sizeof (descr[0]);
  142. void PrintCopyright(void){int i=0;while(i<dl){puts(descr[i++]);i%20||getchar ();}}
  143. /*--------------------------------------------------------------------------*/
  144.  
  145.