/* Utility to help print --version output in a consistent format.1Copyright (C) 1999, 2003 Free Software Foundation, Inc.23This program is free software; you can redistribute it and/or modify4it under the terms of the GNU General Public License as published by5the Free Software Foundation; either version 2, or (at your option)6any later version.78This program is distributed in the hope that it will be useful,9but WITHOUT ANY WARRANTY; without even the implied warranty of10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11GNU General Public License for more details.1213You should have received a copy of the GNU General Public License14along with this program; if not, write to the Free Software Foundation,15Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */1617/* Written by Jim Meyering. */1819#ifndef VERSION_ETC_H20# define VERSION_ETC_H 12122# include <stdarg.h>23# include <stdio.h>2425extern const char *version_etc_copyright;2627extern void version_etc_va (FILE *stream,28const char *command_name, const char *package,29const char *version, va_list authors);3031extern void version_etc (FILE *stream,32const char *command_name, const char *package,33const char *version,34/* const char *author1, ...*/ ...);3536#endif /* VERSION_ETC_H */373839