Lines Matching defs:version
1 /* Print --version and bug-reporting information in a consistent format.
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
22 #include "version-etc.h"
43 /* The three functions below display the --version information the
57 /* Display the --version information the standard way.
64 const char *version,
68 fprintf (stream, "%s (%s) %s\n", command_name, package, version);
70 fprintf (stream, "%s %s\n", package, version);
88 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n\
175 /* Display the --version information the standard way. See the initial
182 const char *version, const char * const * authors)
188 version_etc_arn (stream, command_name, package, version, authors, n_authors);
191 /* Display the --version information the standard way. See the initial
198 const char *version, va_list authors)
208 version_etc_arn (stream, command_name, package, version,
213 /* Display the --version information the standard way.
229 const char *version, /* const char *author1, ...*/ ...)
233 va_start (authors, version);
234 version_etc_va (stream, command_name, package, version, authors);