summaryrefslogtreecommitdiff
path: root/include/util_script.h
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2011-09-23 13:38:09 +0000
committerJim Jagielski <jim@apache.org>2011-09-23 13:38:09 +0000
commit103f776c25b7fdd51da4f98643b8dcdb09efdce6 (patch)
treea180a9a0f13da4a983913f50a3ad1a7e2f2a675a /include/util_script.h
parent69c1a5c854b89a80cf5ca08b7b38d9f0a88c2667 (diff)
downloadhttpd-103f776c25b7fdd51da4f98643b8dcdb09efdce6.tar.gz
Cleanup effort in prep for GA push:
Trim trailing whitespace... no func change git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174748 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_script.h')
-rw-r--r--include/util_script.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/util_script.h b/include/util_script.h
index e7fe61740b..86f8c84bf0 100644
--- a/include/util_script.h
+++ b/include/util_script.h
@@ -63,7 +63,7 @@ AP_DECLARE(char **) ap_create_environment(apr_pool_t *p, apr_table_t *t);
AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info);
/**
- * Add CGI environment variables required by HTTP/1.1 to the request's
+ * Add CGI environment variables required by HTTP/1.1 to the request's
* environment table
* @param r the current request
* @fn void ap_add_cgi_vars(request_rec *r)
@@ -84,10 +84,10 @@ AP_DECLARE(void) ap_add_common_vars(request_rec *r);
* @param r The current request
* @param f The file to read from
* @param buffer Empty when calling the function. On output, if there was an
- * error, the string that cause the error is stored here.
+ * error, the string that cause the error is stored here.
* @return HTTP_OK on success, HTTP_INTERNAL_SERVER_ERROR otherwise
* @fn int ap_scan_script_header_err(request_rec *r, apr_file_t *f, char *buffer)
- */
+ */
AP_DECLARE(int) ap_scan_script_header_err(request_rec *r, apr_file_t *f, char *buffer);
/**
@@ -112,10 +112,10 @@ AP_DECLARE(int) ap_scan_script_header_err_ex(request_rec *r, apr_file_t *f,
* @param r The current request
* @param bb The brigade from which to read
* @param buffer Empty when calling the function. On output, if there was an
- * error, the string that cause the error is stored here.
+ * error, the string that cause the error is stored here.
* @return HTTP_OK on success, HTTP_INTERNAL_SERVER_ERROR otherwise
* @fn int ap_scan_script_header_err_brigade(request_rec *r, apr_bucket_brigade *bb, char *buffer)
- */
+ */
AP_DECLARE(int) ap_scan_script_header_err_brigade(request_rec *r,
apr_bucket_brigade *bb,
char *buffer);
@@ -142,17 +142,17 @@ AP_DECLARE(int) ap_scan_script_header_err_brigade_ex(request_rec *r,
* current request
* @param r The current request
* @param buffer Empty when calling the function. On output, if there was an
- * error, the string that cause the error is stored here.
+ * error, the string that cause the error is stored here.
* @param termch Pointer to the last character parsed.
* @param termarg Pointer to an int to capture the last argument parsed.
- *
- * The varargs are string arguments to parse consecutively for headers,
+ *
+ * The varargs are string arguments to parse consecutively for headers,
* with a NULL argument to terminate the list.
*
* @return HTTP_OK on success, HTTP_INTERNAL_SERVER_ERROR otherwise
- */
-AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r,
- char *buffer,
+ */
+AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r,
+ char *buffer,
const char **termch,
int *termarg, ...)
ap_func_attr_sentinel;
@@ -187,12 +187,12 @@ AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs_ex(request_rec *r,
* current request
* @param r The current request
* @param buffer Empty when calling the function. On output, if there was an
- * error, the string that cause the error is stored here.
+ * error, the string that cause the error is stored here.
* @param getsfunc Function to read the headers from. This function should
act like gets()
* @param getsfunc_data The place to read from
* @return HTTP_OK on success, HTTP_INTERNAL_SERVER_ERROR otherwise
- */
+ */
AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
int (*getsfunc) (char *, int, void *),
void *getsfunc_data);