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: prepargs.c
/* Parse arguments from a string and prepend them to an argv. Copyright (C) 1999, 2000, 2001, 2002 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 Paul Eggert <eggert@twinsun.com>. */ #ifdef HAVE_CONFIG_H # include <config.h> #endif #include "prepargs.h" #include <string.h> #include <sys/types.h> #include <xalloc.h> #include <ctype.h> /* IN_CTYPE_DOMAIN (C) is nonzero if the unsigned char C can safely be given as an argument to <ctype.h> macros like "isspace". */ #ifdef STDC_HEADERS # define IN_CTYPE_DOMAIN(c) 1 #else # define IN_CTYPE_DOMAIN(c) ((c) <= 0177) #endif #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) /* Find the white-space-separated options specified by OPTIONS, and using BUF to store copies of these options, set ARGV[0], ARGV[1], etc. to the option copies. Return the number N of options found. Do not set ARGV[N]. If ARGV is zero, do not store ARGV[0] etc. Backslash can be used to escape whitespace (and backslashes). */ static int prepend_args (char const *options, char *buf, char **argv) { char const *o = options; char *b = buf; int n = 0; for (;;) { while (ISSPACE ((unsigned char) *o)) o++; if (!*o) return n; if (argv) argv[n] = b; n++; do if ((*b++ = *o++) == '\\' && *o) b[-1] = *o++; while (*o && ! ISSPACE ((unsigned char) *o)); *b++ = '\0'; } } /* Prepend the whitespace-separated options in OPTIONS to the argument vector of a main program with argument count *PARGC and argument vector *PARGV. */ void prepend_default_options (char const *options, int *pargc, char ***pargv) { if (options) { char *buf = xmalloc (strlen (options) + 1); int prepended = prepend_args (options, buf, (char **) 0); int argc = *pargc; char * const *argv = *pargv; char **pp = (char **) xmalloc ((prepended + argc + 1) * sizeof *pp); *pargc = prepended + argc; *pargv = pp; *pp++ = *argv++; pp += prepend_args (options, buf, pp); while ((*pp++ = *argv++)) continue; } }
Upload File
Create Folder