| 821 | } |
| 822 | |
| 823 | AP_DECLARE(const char *) ap_find_module_short_name(int module_index) |
| 824 | { |
| 825 | if (module_index < 0 || module_index >= conf_vector_length) |
| 826 | return NULL; |
| 827 | return ap_module_short_names[module_index]; |
| 828 | } |
| 829 | |
| 830 | AP_DECLARE(module *) ap_find_linked_module(const char *name) |
| 831 | { |