| 1112 | */ |
| 1113 | |
| 1114 | static const char *skip_slashes(const char *p) |
| 1115 | { |
| 1116 | while (is_dir_sep(*p)) |
| 1117 | p++; |
| 1118 | return p; |
| 1119 | } |
| 1120 | |
| 1121 | int normalize_path_copy_len(char *dst, const char *src, int *prefix_len) |
| 1122 | { |
no outgoing calls
no test coverage detected