exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / version-etc.h
blob505d2fa7fd9abfe4cae37d3b2dad435e55a18d84
1 /* Print --version and bug-reporting information in a consistent format.
2 Copyright (C) 1999, 2003, 2005, 2009-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation, either version 3 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Jim Meyering. */
19 #ifndef VERSION_ETC_H
20 # define VERSION_ETC_H 1
22 /* This file uses _GL_ATTRIBUTE_SENTINEL. */
23 # if !_GL_CONFIG_H_INCLUDED
24 # error "Please include config.h first."
25 # endif
27 # include <stdarg.h>
28 # include <stdio.h>
30 # ifdef __cplusplus
31 extern "C"
33 # endif
35 extern const char version_etc_copyright[];
37 /* The three functions below display the --version information in the
38 standard way: command and package names, package version, followed
39 by a short GPLv3+ notice and a list of up to 10 author names.
41 If COMMAND_NAME is NULL, the PACKAGE is assumed to be the name of
42 the program. The formats are therefore:
44 PACKAGE VERSION
48 COMMAND_NAME (PACKAGE) VERSION.
50 The functions differ in the way they are passed author names: */
52 /* N_AUTHORS names are supplied in array AUTHORS. */
53 extern void version_etc_arn (FILE *stream,
54 const char *command_name, const char *package,
55 const char *version,
56 const char * const * authors, size_t n_authors);
58 /* Names are passed in the NULL-terminated array AUTHORS. */
59 extern void version_etc_ar (FILE *stream,
60 const char *command_name, const char *package,
61 const char *version, const char * const * authors);
63 /* Names are passed in the NULL-terminated va_list. */
64 extern void version_etc_va (FILE *stream,
65 const char *command_name, const char *package,
66 const char *version, va_list authors);
68 /* Names are passed as separate arguments, with an additional
69 NULL argument at the end. */
70 extern void version_etc (FILE *stream,
71 const char *command_name, const char *package,
72 const char *version,
73 /* const char *author1, ..., NULL */ ...)
74 _GL_ATTRIBUTE_SENTINEL ((0));
76 /* Display the usual "Report bugs to" stanza. */
77 extern void emit_bug_reporting_address (void);
79 # ifdef __cplusplus
81 # endif
83 #endif /* VERSION_ETC_H */