| 233 | /* string related */ |
| 234 | |
| 235 | int md_array_is_empty(const struct apr_array_header_t *array) |
| 236 | { |
| 237 | return (array == NULL) || (array->nelts == 0); |
| 238 | } |
| 239 | |
| 240 | char *md_util_str_tolower(char *s) |
| 241 | { |
no outgoing calls
no test coverage detected