003 File Manager
Current Path:
/usr/src/contrib/diff/lib
usr
/
src
/
contrib
/
diff
/
lib
/
📁
..
📄
basename.c
(2.2 KB)
📄
c-stack.c
(8.08 KB)
📄
c-stack.h
(826 B)
📄
cmpbuf.c
(3.76 KB)
📄
cmpbuf.h
(907 B)
📄
dirname.h
(1.31 KB)
📄
error.c
(7.38 KB)
📄
error.h
(2.39 KB)
📄
exclude.c
(6.25 KB)
📄
exclude.h
(1.66 KB)
📄
exit.h
(1.03 KB)
📄
exitfail.c
(933 B)
📄
exitfail.h
(831 B)
📄
file-type.c
(1.96 KB)
📄
file-type.h
(3.39 KB)
📄
getopt.h
(5.93 KB)
📄
gettext.h
(2.95 KB)
📄
gnulib.mk
(1.82 KB)
📄
hard-locale.c
(1.93 KB)
📄
hard-locale.h
(902 B)
📄
inttostr.h
(1.49 KB)
📄
posixver.c
(1.5 KB)
📄
posixver.h
(27 B)
📄
prepargs.c
(2.71 KB)
📄
prepargs.h
(129 B)
📄
quotesys.c
(2.78 KB)
📄
quotesys.h
(237 B)
📄
setmode.h
(1 KB)
📄
strcase.h
(1.5 KB)
📄
strftime.c
(31.83 KB)
📄
strtoimax.c
(2.19 KB)
📄
strtoumax.c
(42 B)
📄
unlocked-io.h
(3.69 KB)
📄
version-etc.c
(5.58 KB)
📄
version-etc.h
(1.29 KB)
📄
xalloc.h
(3.51 KB)
📄
xmalloc.c
(6.39 KB)
📄
xstrtol.h
(2.68 KB)
Editing: version-etc.c
/* Utility to help print --version output in a consistent format. Copyright (C) 1999-2004 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. */ /* Written by Jim Meyering. */ #if HAVE_CONFIG_H # include <config.h> #endif /* Specification. */ #include "version-etc.h" #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include "unlocked-io.h" #include "gettext.h" #define _(msgid) gettext (msgid) /* Default copyright goes to the FSF. */ const char* version_etc_copyright = /* Do *not* mark this string for translation. */ "Copyright (C) 2004 Free Software Foundation, Inc."; /* Like version_etc, below, but with the NULL-terminated author list provided via a variable of type va_list. */ void version_etc_va (FILE *stream, const char *command_name, const char *package, const char *version, va_list authors) { unsigned int n_authors; /* Count the number of authors. */ { va_list tmp_authors; #ifdef __va_copy __va_copy (tmp_authors, authors); #else tmp_authors = authors; #endif n_authors = 0; while (va_arg (tmp_authors, const char *) != NULL) ++n_authors; } if (command_name) fprintf (stream, "%s (%s) %s\n", command_name, package, version); else fprintf (stream, "%s %s\n", package, version); switch (n_authors) { case 0: /* The caller must provide at least one author name. */ abort (); case 1: /* TRANSLATORS: %s denotes an author name. */ vfprintf (stream, _("Written by %s.\n"), authors); break; case 2: /* TRANSLATORS: Each %s denotes an author name. */ vfprintf (stream, _("Written by %s and %s.\n"), authors); break; case 3: /* TRANSLATORS: Each %s denotes an author name. */ vfprintf (stream, _("Written by %s, %s, and %s.\n"), authors); break; case 4: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ vfprintf (stream, _("Written by %s, %s, %s,\nand %s.\n"), authors); break; case 5: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ vfprintf (stream, _("Written by %s, %s, %s,\n%s, and %s.\n"), authors); break; case 6: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ vfprintf (stream, _("Written by %s, %s, %s,\n%s, %s, and %s.\n"), authors); break; case 7: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ vfprintf (stream, _("Written by %s, %s, %s,\n%s, %s, %s, and %s.\n"), authors); break; case 8: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ vfprintf (stream, _("\ Written by %s, %s, %s,\n%s, %s, %s, %s,\nand %s.\n"), authors); break; case 9: /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ vfprintf (stream, _("\ Written by %s, %s, %s,\n%s, %s, %s, %s,\n%s, and %s.\n"), authors); break; default: /* 10 or more authors. Use an abbreviation, since the human reader will probably not want to read the entire list anyway. */ /* TRANSLATORS: Each %s denotes an author name. You can use line breaks, estimating that each author name occupies ca. 16 screen columns and that a screen line has ca. 80 columns. */ vfprintf (stream, _("\ Written by %s, %s, %s,\n%s, %s, %s, %s,\n%s, %s, and others.\n"), authors); break; } va_end (authors); putc ('\n', stream); fputs (version_etc_copyright, stream); putc ('\n', stream); fputs (_("\ 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"), stream); } /* Display the --version information the standard way. If COMMAND_NAME is NULL, the PACKAGE is asumed to be the name of the program. The formats are therefore: PACKAGE VERSION or COMMAND_NAME (PACKAGE) VERSION. The author names are passed as separate arguments, with an additional NULL argument at the end. */ void version_etc (FILE *stream, const char *command_name, const char *package, const char *version, /* const char *author1, ...*/ ...) { va_list authors; va_start (authors, version); version_etc_va (stream, command_name, package, version, authors); }
Upload File
Create Folder