diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-02-16 12:22:08 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-16 08:54:34 -0800 |
commit | 4bb43de25977063187dedf054122985bc5a2660e (patch) | |
tree | 7e8f344d6ae53bdfd281ba32c12143bd7b07ac51 /path.c | |
parent | d06f15d9c0c2b072e5eebf87fa93ee9a899ed642 (diff) | |
download | git-4bb43de25977063187dedf054122985bc5a2660e.tar.gz |
Move offset_1st_component() to path.c
The implementation is also lightly modified to use is_dir_sep()
instead of hardcoding '/'.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'path.c')
-rw-r--r-- | path.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -649,3 +649,10 @@ int daemon_avoid_alias(const char *p) } } } + +int offset_1st_component(const char *path) +{ + if (has_dos_drive_prefix(path)) + return 2 + is_dir_sep(path[2]); + return is_dir_sep(path[0]); +} |