1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
/******************************************************************************
** $Id: version.c,v 1.15 2012-04-15 05:04:04 gene Exp $
**=============================================================================
**
** This file is part of BibTool.
** It is distributed under the GNU General Public License.
** See the file COPYING for details.
**
** (c) 1996-2012 Gerd Neugebauer
**
** Net: gene@gerd-neugebauer.de
**
******************************************************************************/
#include <bibtool/error.h>
/*-----------------------------------------------------------------------------
** Variable: bibtool_version
** Type: char *
** Purpose: This string variable contains the version number of
** \BibTool. Usually it is of the form
** \textit{major.minor} where \textit{major} and
** \textit{minor} are the major and minor version
** numbers. In addition a postfix like |alpha| or a
** patchlevel like |p1| can be present.
**___________________________________________________ */
char * bibtool_version = "2.55"; /* */
/*-----------------------------------------------------------------------------
** Function: show_version()
** Purpose: Print the version number and a short copyright notice
** onto the error stream.
** Arguments: none
** Returns: nothing
**___________________________________________________ */
void show_version() /* */
{ /* */
ErrPrintF("BibTool Vers. %s (C) 1996-2012 Gerd Neugebauer\n\n",/* */
bibtool_version); /* */
} /*------------------------*/
|