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>
This commit is contained in:
Nguyễn Thái Ngọc Duy
2010-02-16 12:22:08 +07:00
committed by Junio C Hamano
parent d06f15d9c0
commit 4bb43de259
3 changed files with 8 additions and 7 deletions

View File

@ -83,13 +83,6 @@ int get_sha1_hex(const char *hex, unsigned char *sha1)
return 0;
}
static inline int offset_1st_component(const char *path)
{
if (has_dos_drive_prefix(path))
return 2 + (path[2] == '/');
return *path == '/';
}
int safe_create_leading_directories(char *path)
{
char *pos = path + offset_1st_component(path);