From d412770d6568cc14f9bf0852d4a9dc8d434ae7fb Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 28 Mar 2011 19:02:37 +0000 Subject: [PATCH] Wrap at 80 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086341 13f79535-47bb-0310-9956-ffa450edef68 --- include/ap_expr.h | 6 ++++-- 1 file 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 { -- 2.40.0