summaryrefslogtreecommitdiff
path: root/lib/argmatch.h
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
commit44538bbbd8cd85adf0e880094cbbbc47c2004e25 (patch)
tree0b8d9be3b47582f21f1014721014ccdb04e88f14 /lib/argmatch.h
parent65df5337052b06a1e16551e51add8f6f9dc8b563 (diff)
downloadcoreutils-44538bbbd8cd85adf0e880094cbbbc47c2004e25.tar.xz
remove trailing blanks
Diffstat (limited to 'lib/argmatch.h')
-rw-r--r--lib/argmatch.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/argmatch.h b/lib/argmatch.h
index 5abce4ca9..6f87d0dc8 100644
--- a/lib/argmatch.h
+++ b/lib/argmatch.h
@@ -1,4 +1,4 @@
-/* argmatch.c -- find a match for a string in an array
+/* argmatch.h -- definitions and prototypes for argmatch.c
Copyright (C) 1990, 1998 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -40,11 +40,11 @@
false ambiguities (i.e., different matches of ARG but corresponding
to the same values in VALLIST). */
-int argmatch
- PARAMS ((const char *arg, const char *const *arglist,
+int argmatch
+ PARAMS ((const char *arg, const char *const *arglist,
const char *vallist, size_t valsize));
-int argcasematch
- PARAMS ((const char *arg, const char *const *arglist,
+int argcasematch
+ PARAMS ((const char *arg, const char *const *arglist,
const char *vallist, size_t valsize));
# define ARGMATCH(ARG,ARGLIST,VALLIST) \
@@ -57,7 +57,7 @@ int argcasematch
/* Report on stderr why argmatch failed. Report correct values. */
-void argmatch_invalid
+void argmatch_invalid
PARAMS ((const char *kind, const char *value, int problem));
/* Left for compatibility with the old name invalid_arg */
@@ -70,7 +70,7 @@ void argmatch_invalid
/* Report on stderr the list of possible arguments. */
void argmatch_valid
- PARAMS ((const char *const *arglist,
+ PARAMS ((const char *const *arglist,
const char *vallist, size_t valsize));
# define ARGMATCH_VALID(ARGLIST,VALLIST) \
@@ -80,8 +80,8 @@ void argmatch_valid
/* Returns matches, or, upon error, report explanatory message and
exit. */
-int __xargmatch_internal
- PARAMS ((const char *kind,
+int __xargmatch_internal
+ PARAMS ((const char *kind,
const char *arg, const char *const *arglist,
const char *vallist, size_t valsize,
int sensitive));