summaryrefslogtreecommitdiffstats
path: root/include/ap_expr.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2011-03-28 21:02:37 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2011-03-28 21:02:37 +0200
commitd412770d6568cc14f9bf0852d4a9dc8d434ae7fb (patch)
tree7c5474cb552f265f66d3436baeefa7456f7afd5e /include/ap_expr.h
parentadd hints for (diff)
downloadapache2-d412770d6568cc14f9bf0852d4a9dc8d434ae7fb.tar.xz
apache2-d412770d6568cc14f9bf0852d4a9dc8d434ae7fb.zip
Wrap at 80
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086341 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--include/ap_expr.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ap_expr.h b/include/ap_expr.h
index 5b29ca84d0..eb4215400d 100644
--- a/include/ap_expr.h
+++ b/include/ap_expr.h
@@ -178,7 +178,8 @@ typedef const char *(ap_expr_string_func_t)(ap_expr_eval_ctx_t *ctx,
* @param arg The argument
* @return The functions result list of strings, may be NULL for 'empty array'
*/
-typedef apr_array_header_t *(ap_expr_list_func_t)(ap_expr_eval_ctx_t *ctx, const void *data,
+typedef apr_array_header_t *(ap_expr_list_func_t)(ap_expr_eval_ctx_t *ctx,
+ const void *data,
const char *arg);
/** Variable lookup function, takes no argument and returns a string
@@ -186,7 +187,8 @@ typedef apr_array_header_t *(ap_expr_list_func_t)(ap_expr_eval_ctx_t *ctx, const
* @param data An opaque context provided by the lookup hook function
* @return The expanded variable
*/
-typedef const char *(ap_expr_var_func_t)(ap_expr_eval_ctx_t *ctx, const void *data);
+typedef const char *(ap_expr_var_func_t)(ap_expr_eval_ctx_t *ctx,
+ const void *data);
/** parameter struct passed to the lookup hook functions */
typedef struct {