00001 /* Utility to help print --version output in a consistent format. 00002 Copyright (C) 1999 Free Software Foundation, Inc. 00003 00004 This program is free software; you can redistribute it and/or modify 00005 it under the terms of the GNU General Public License as published by 00006 the Free Software Foundation; either version 2, or (at your option) 00007 any later version. 00008 00009 This program is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 GNU General Public License for more details. 00013 00014 You should have received a copy of the GNU General Public License 00015 along with this program; if not, write to the Free Software Foundation, 00016 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 00017 00018 /* Written by Jim Meyering. */ 00019 00020 #ifndef VERSION_ETC_H 00021 # define VERSION_ETC_H 1 00022 00023 # ifndef PARAMS 00024 # if defined PROTOTYPES || (defined __STDC__ && __STDC__) 00025 # define PARAMS(Args) Args 00026 # else 00027 # define PARAMS(Args) () 00028 # endif 00029 # endif 00030 00031 extern char *version_etc_copyright; 00032 00033 void 00034 version_etc PARAMS ((FILE *stream, 00035 const char *command_name, const char *package, 00036 const char *version, const char *authors)); 00037 00038 #endif /* VERSION_ETC_H */