summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-02-05 13:12:02 +0200
committerVicent Marti <tanoku@gmail.com>2011-02-05 13:12:02 +0200
commit412b3887761be5e8910b824c81b6f3637137446c (patch)
tree96eb9b8260632db3e4e08974870c795c096d7eed /src
parentf725931b4865317b58c1f1600724cb36e586c332 (diff)
downloadlibgit2-412b3887761be5e8910b824c81b6f3637137446c.tar.gz
Add new utility method `git__joinpath`
Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/util.c24
-rw-r--r--src/util.h8
2 files changed, 32 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c
index d9d77eccf..e1f709962 100644
--- a/src/util.c
+++ b/src/util.c
@@ -202,6 +202,30 @@ const char *git__topdir(const char *path)
return &path[i + 1];
}
+char *git__joinpath(const char *path_a, const char *path_b)
+{
+ int len_a, len_b;
+ char *path_new;
+
+ len_a = strlen(path_a);
+ len_b = strlen(path_b);
+
+ path_new = git__malloc(len_a + len_b + 2);
+ if (path_new == NULL)
+ return NULL;
+
+ strcpy(path_new, path_a);
+
+ if (path_new[len_a - 1] != '/')
+ path_new[len_a++] = '/';
+
+ if (path_b[0] == '/')
+ path_b++;
+
+ strcpy(path_new + len_a, path_b);
+ return path_new;
+}
+
static char *strtok_raw(char *output, char *src, char *delimit, int keep)
{
while (*src && strchr(delimit, *src) == NULL)
diff --git a/src/util.h b/src/util.h
index 67ff4aec1..0f010929f 100644
--- a/src/util.h
+++ b/src/util.h
@@ -58,6 +58,14 @@ extern int git__basename_r(char *buffer, size_t bufflen, const char *path);
extern const char *git__topdir(const char *path);
+/**
+ * Join two paths together. Takes care of properly fixing the
+ * middle slashes and everything
+ *
+ * Returns a newly allocated string; must be free'd manually.
+ */
+extern char *git__joinpath(const char *path_a, const char *path_b);
+
extern void git__hexdump(const char *buffer, size_t n);
extern uint32_t git__hash(const void *key, int len, uint32_t seed);