summaryrefslogtreecommitdiff
path: root/include/apr_getopt.h
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2022-11-19 16:12:13 +0000
committerIvan Zhakov <ivan@apache.org>2022-11-19 16:12:13 +0000
commitddf6aa4327df4eee8b481a222c2635ba000471c3 (patch)
tree0061d19699468e5d7a642b0e3a3ef9d685f88d12 /include/apr_getopt.h
parent8f3d73a1f9e996148291f1adb9889d5cc882a1c1 (diff)
downloadapr-ddf6aa4327df4eee8b481a222c2635ba000471c3.tar.gz
Remove trailing whitespaces.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1905407 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_getopt.h')
-rw-r--r--include/apr_getopt.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/apr_getopt.h b/include/apr_getopt.h
index 75ad5663a..034800687 100644
--- a/include/apr_getopt.h
+++ b/include/apr_getopt.h
@@ -30,11 +30,11 @@ extern "C" {
/**
* @defgroup apr_getopt Command Argument Parsing
- * @ingroup APR
+ * @ingroup APR
* @{
*/
-/**
+/**
* An @c apr_getopt_t error callback function.
*
* @a arg is this @c apr_getopt_t's @c errarg member.
@@ -46,7 +46,7 @@ typedef struct apr_getopt_t apr_getopt_t;
/**
* Structure to store command line argument information.
- */
+ */
struct apr_getopt_t {
/** context for processing */
apr_pool_t *cont;
@@ -106,8 +106,8 @@ APR_DECLARE(apr_status_t) apr_getopt_init(apr_getopt_t **os, apr_pool_t *cont,
/**
* Parse the options initialized by apr_getopt_init().
* @param os The apr_opt_t structure returned by apr_getopt_init()
- * @param opts A string of characters that are acceptable options to the
- * program. Characters followed by ":" are required to have an
+ * @param opts A string of characters that are acceptable options to the
+ * program. Characters followed by ":" are required to have an
* option associated
* @param option_ch The next option character parsed
* @param option_arg The argument following the option character:
@@ -119,7 +119,7 @@ APR_DECLARE(apr_status_t) apr_getopt_init(apr_getopt_t **os, apr_pool_t *cont,
* APR_SUCCESS -- The next option was found.
* </PRE>
*/
-APR_DECLARE(apr_status_t) apr_getopt(apr_getopt_t *os, const char *opts,
+APR_DECLARE(apr_status_t) apr_getopt(apr_getopt_t *os, const char *opts,
char *option_ch, const char **option_arg);
/**