changeset 1719:3a52df5cf257

(_): Define it. (parse_long_options): Accept new parameter, authors, and print it.
author Jim Meyering <jim@meyering.net>
date Thu, 04 Mar 1999 05:08:01 +0000
parents db73263fa4b3
children 9af6605f7ca5
files lib/long-options.c
diffstat 1 files changed, 14 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/long-options.c	Tue Mar 02 13:53:33 1999 +0000
+++ b/lib/long-options.c	Thu Mar 04 05:08:01 1999 +0000
@@ -26,6 +26,13 @@
 #include "closeout.h"
 #include "long-options.h"
 
+#if ENABLE_NLS
+# include <libintl.h>
+# define _(Text) gettext (Text)
+#else
+# define _(Text) Text
+#endif
+
 static struct option const long_options[] =
 {
   {"help", no_argument, 0, 'h'},
@@ -37,8 +44,12 @@
    Be careful not to gobble up `--'.  */
 
 void
-parse_long_options (int argc, char **argv, const char *command_name,
-		    const char *package, const char *version,
+parse_long_options (int argc,
+		    char **argv,
+		    const char *command_name,
+		    const char *package,
+		    const char *version,
+		    const char *authors,
 		    void (*usage_func)())
 {
   int c;
@@ -59,6 +70,7 @@
 
 	case 'v':
 	  printf ("%s (%s) %s\n", command_name, package, version);
+	  printf (_("Written by %s.\n"), authors);
 	  close_stdout (); /* FIXME: output failure exit status
 			      should be settable via an arg.  */
 	  exit (0);