summaryrefslogtreecommitdiff
path: root/lib/argmatch.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-12-31 16:19:31 +0000
committerJim Meyering <jim@meyering.net>1998-12-31 16:19:31 +0000
commitccb03e92a81c0b5911d57f8ba9741c6ce7163324 (patch)
tree616c3cc92d1e73dd6e508dff90cc3816b9793f70 /lib/argmatch.c
parentbcd35974a9b1a46c9f0dd26d695f626379b7545e (diff)
downloadgnulib-ccb03e92a81c0b5911d57f8ba9741c6ce7163324.tar.gz
remove trailing blanks
Diffstat (limited to 'lib/argmatch.c')
-rw-r--r--lib/argmatch.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/argmatch.c b/lib/argmatch.c
index 625ad26b7d..1364292868 100644
--- a/lib/argmatch.c
+++ b/lib/argmatch.c
@@ -99,7 +99,7 @@ extern char *program_name;
static int
__argmatch_internal (const char *arg, const char *const *arglist,
- const char *vallist, size_t valsize,
+ const char *vallist, size_t valsize,
int sensitive)
{
int i; /* Temporary index in ARGLIST. */
@@ -124,7 +124,7 @@ __argmatch_internal (const char *arg, const char *const *arglist,
else
/* Second nonexact match found. */
if (vallist == NULL
- || memcmp (vallist + valsize * matchind,
+ || memcmp (vallist + valsize * matchind,
vallist + valsize * i, valsize))
/* There is a real ambiguity, or we could not
desambiguise. */
@@ -218,12 +218,12 @@ argmatch_valid (const char *const *arglist,
VALIST, and VALSIZE are the same as in valid_args */
int
__xargmatch_internal (const char *kind, const char *arg,
- const char *const *arglist,
+ const char *const *arglist,
const char *vallist, size_t valsize,
int sensitive)
{
int i;
-
+
i = __argmatch_internal (arg, arglist, vallist, valsize, sensitive);
if (i >= 0)
{
@@ -248,7 +248,7 @@ argmatch_to_argument (char * value,
const char *vallist, size_t valsize)
{
int i;
-
+
for (i = 0 ; arglist [i] ; i++)
if (!memcmp (value, vallist + valsize * i, valsize))
return arglist [i];
@@ -283,18 +283,18 @@ enum backup_type
values */
static const char *const backup_args[] =
{
- "no", "none", "off",
- "simple", "never",
- "existing", "nil",
- "numbered", "t",
+ "no", "none", "off",
+ "simple", "never",
+ "existing", "nil",
+ "numbered", "t",
0
};
static const enum backup_type backup_vals[] =
{
- none, none, none,
- simple, simple,
- numbered_existing, numbered_existing,
+ none, none, none,
+ simple, simple,
+ numbered_existing, numbered_existing,
numbered, numbered
};
@@ -313,14 +313,14 @@ main (int argc, const char *const * argv)
}
if ((cp = getenv ("VERSION_CONTROL")))
- backup_type = XARGCASEMATCH ("$VERSION_CONTROL", cp,
+ backup_type = XARGCASEMATCH ("$VERSION_CONTROL", cp,
backup_args, backup_vals);
if (argc == 2)
- backup_type = XARGCASEMATCH (program_name, argv [1],
+ backup_type = XARGCASEMATCH (program_name, argv [1],
backup_args, backup_vals);
- printf ("The version control is `%s'\n",
+ printf ("The version control is `%s'\n",
ARGMATCH_TO_ARGUMENT (backup_type, backup_args, backup_vals));
return 0;