X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Ftar;a=blobdiff_plain;f=lib%2Fprepargs.c;h=0c85bd445395a571d2d26b0b3758eb00671fb85c;hp=d8ca5d0bf36fd46790bf1b4a1cf720448ce39b8f;hb=45ccda119355a1087450039a250359c1d0de0d08;hpb=614f749ff77c5e9817897ff8166bddd26915a78e diff --git a/lib/prepargs.c b/lib/prepargs.c index d8ca5d0..0c85bd4 100644 --- a/lib/prepargs.c +++ b/lib/prepargs.c @@ -1,9 +1,9 @@ /* Parse arguments from a string and prepend them to an argv. - Copyright 1999, 2000 Free Software Foundation, Inc. + Copyright 1999-2001, 2007, 2013-2014 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) + the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -12,9 +12,7 @@ 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. */ + along with this program. If not, see . */ /* Written by Paul Eggert . */ @@ -25,17 +23,11 @@ #include #include -#include - -/* IN_CTYPE_DOMAIN (C) is nonzero if the unsigned char C can safely be given - as an argument to macros like "isspace". */ -#ifdef STDC_HEADERS -# define IN_CTYPE_DOMAIN(c) 1 -#else -# define IN_CTYPE_DOMAIN(c) ((c) <= 0177) +#if HAVE_STRING_H +# include #endif -#define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) +#include /* Find the white-space-separated options specified by OPTIONS, and using BUF to store copies of these options, set ARGV[0], ARGV[1], @@ -51,7 +43,7 @@ prepend_args (char const *options, char *buf, char **argv) for (;;) { - while (ISSPACE ((unsigned char) *o)) + while (isspace ((unsigned char) *o)) o++; if (!*o) return n; @@ -62,7 +54,7 @@ prepend_args (char const *options, char *buf, char **argv) do if ((*b++ = *o++) == '\\' && *o) b[-1] = *o++; - while (*o && ! ISSPACE ((unsigned char) *o)); + while (*o && ! isspace ((unsigned char) *o)); *b++ = '\0'; }