| 706 | |
| 707 | |
| 708 | AP_DECLARE(int) ap_count_dirs(const char *path) |
| 709 | { |
| 710 | int x, n; |
| 711 | |
| 712 | for (x = 0, n = 0; path[x]; x++) |
| 713 | if (path[x] == '/') |
| 714 | n++; |
| 715 | return n; |
| 716 | } |
| 717 | |
| 718 | AP_DECLARE(char *) ap_getword_nc(apr_pool_t *atrans, char **line, char stop) |
| 719 | { |
no outgoing calls
no test coverage detected