| 1244 | */ |
| 1245 | |
| 1246 | static char *rewrite_mapfunc_toupper(request_rec *r, char *key) |
| 1247 | { |
| 1248 | ap_str_toupper(key); |
| 1249 | |
| 1250 | return key; |
| 1251 | } |
| 1252 | |
| 1253 | static char *rewrite_mapfunc_tolower(request_rec *r, char *key) |
| 1254 | { |
nothing calls this directly
no test coverage detected