summaryrefslogtreecommitdiff
path: root/lib/version-etc.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-03-26 04:17:33 +0000
committerJim Meyering <jim@meyering.net>1999-03-26 04:17:33 +0000
commitc004c87b6c36567b8e23c8b10012d2d060bccf68 (patch)
treedf82b84697026a694d9b08dd840789f5d9a40806 /lib/version-etc.c
parenteff1cee6e19fb2c55d5b542b25ea7ab830d774cf (diff)
downloadcoreutils-c004c87b6c36567b8e23c8b10012d2d060bccf68.tar.xz
*** empty log message ***
Diffstat (limited to 'lib/version-etc.c')
-rw-r--r--lib/version-etc.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/version-etc.c b/lib/version-etc.c
new file mode 100644
index 000000000..68275b366
--- /dev/null
+++ b/lib/version-etc.c
@@ -0,0 +1,47 @@
+/* Utility to help print --version output in a consistent format.
+ Copyright (C) 1999 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <stdio.h>
+#include "version-etc.h"
+
+#if ENABLE_NLS
+# include <libintl.h>
+# define _(Text) gettext (Text)
+#else
+# define _(Text) Text
+#endif
+
+void
+version_etc (FILE *stream,
+ const char *command_name, const char *package,
+ const char *version, const char *authors)
+{
+ fprintf (stream, "%s (%s) %s\n", command_name, package, version);
+ fputs (_("\
+\n\
+Copyright (C) 1999 Free Software Foundation, Inc.\n\
+This is free software; see the source for copying conditions. There is NO\n\
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
+\n\
+"
+ ), stream);
+ fprintf (stream, _("Written by %s.\n"), authors);
+}