Use Gnulib's `nproc'.
[bpt/guile.git] / lib / version-etc.h
CommitLineData
4f02b98d 1/* Print --version and bug-reporting information in a consistent format.
61cd9dc9 2 Copyright (C) 1999, 2003, 2005, 2009-2010 Free Software Foundation, Inc.
4f02b98d
LC
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
8
9 This program 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.
13
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16
17/* Written by Jim Meyering. */
18
19#ifndef VERSION_ETC_H
20# define VERSION_ETC_H 1
21
22# include <stdarg.h>
23# include <stdio.h>
24
25/* The `sentinel' attribute was added in gcc 4.0. */
26#ifndef ATTRIBUTE_SENTINEL
27# if 4 <= __GNUC__
28# define ATTRIBUTE_SENTINEL __attribute__ ((__sentinel__))
29# else
30# define ATTRIBUTE_SENTINEL /* empty */
31# endif
32#endif
33
34extern const char version_etc_copyright[];
35
36/* The three functions below display the --version information in the
37 standard way: command and package names, package version, followed
38 by a short GPLv3+ notice and a list of up to 10 author names.
39
40 If COMMAND_NAME is NULL, the PACKAGE is asumed to be the name of
41 the program. The formats are therefore:
42
43 PACKAGE VERSION
44
45 or
46
47 COMMAND_NAME (PACKAGE) VERSION.
48
49 The functions differ in the way they are passed author names: */
50
51/* N_AUTHORS names are supplied in array AUTHORS. */
52extern void version_etc_arn (FILE *stream,
1cd4fffc
LC
53 const char *command_name, const char *package,
54 const char *version,
55 const char * const * authors, size_t n_authors);
4f02b98d
LC
56
57/* Names are passed in the NULL-terminated array AUTHORS. */
58extern void version_etc_ar (FILE *stream,
1cd4fffc
LC
59 const char *command_name, const char *package,
60 const char *version, const char * const * authors);
4f02b98d
LC
61
62/* Names are passed in the NULL-terminated va_list. */
63extern void version_etc_va (FILE *stream,
1cd4fffc
LC
64 const char *command_name, const char *package,
65 const char *version, va_list authors);
4f02b98d
LC
66
67/* Names are passed as separate arguments, with an additional
68 NULL argument at the end. */
69extern void version_etc (FILE *stream,
1cd4fffc
LC
70 const char *command_name, const char *package,
71 const char *version,
72 /* const char *author1, ..., NULL */ ...)
4f02b98d
LC
73 ATTRIBUTE_SENTINEL;
74
75/* Display the usual `Report bugs to' stanza */
76extern void emit_bug_reporting_address (void);
77
78#endif /* VERSION_ETC_H */