| 699 | } |
| 700 | |
| 701 | static int is_absolute_path(const char *path) |
| 702 | { |
| 703 | #ifndef CASE_BLIND_FILESYSTEM |
| 704 | return (path[0] == '/'); |
| 705 | #else |
| 706 | return ((AP_IS_SLASH(path[0]) && path[1] == path[0]) |
| 707 | || (apr_isalpha(path[0]) && path[1] == ':' && AP_IS_SLASH(path[2]))); |
| 708 | #endif |
| 709 | } |
| 710 | |
| 711 | static const char c2x_table[] = "0123456789abcdef"; |
| 712 |
no outgoing calls
no test coverage detected