| 182 | } |
| 183 | |
| 184 | static const char *ap_expr_eval_var(ap_expr_eval_ctx_t *ctx, |
| 185 | ap_expr_var_func_t *func, |
| 186 | const void *data) |
| 187 | { |
| 188 | AP_DEBUG_ASSERT(func != NULL); |
| 189 | AP_DEBUG_ASSERT(data != NULL); |
| 190 | return (*func)(ctx, data); |
| 191 | } |
| 192 | |
| 193 | static const char *ap_expr_eval_re_backref(ap_expr_eval_ctx_t *ctx, unsigned int n) |
| 194 | { |