summaryrefslogtreecommitdiff
path: root/src/oid.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2014-08-18 12:41:06 +0200
committerVicent Marti <tanoku@gmail.com>2014-08-18 12:41:06 +0200
commit4ca0b566ca811550b4db31045e580b4970e5b8e3 (patch)
treee34ed66136f5a6cdf496b4d8c8a52fcb9c17702e /src/oid.h
parent59403f1ff55346c64bfaa0744ea7f3375da71725 (diff)
downloadlibgit2-4ca0b566ca811550b4db31045e580b4970e5b8e3.tar.gz
oid: Export `git_oid_tostr_s` instead of `_allocfmt`vmg/tostr_s
The old `allocfmt` is of no use to callers, as they are not able to free the returned buffer. Export a new API that returns a static string that doesn't need to be freed.
Diffstat (limited to 'src/oid.h')
-rw-r--r--src/oid.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/oid.h b/src/oid.h
index cfe7ca1b2..aa1f0bfdc 100644
--- a/src/oid.h
+++ b/src/oid.h
@@ -9,6 +9,17 @@
#include "git2/oid.h"
+/**
+ * Format a git_oid into a newly allocated c-string.
+ *
+ * The c-string is owned by the caller and needs to be manually freed.
+ *
+ * @param id the oid structure to format
+ * @return the c-string; NULL if memory is exhausted. Caller must
+ * deallocate the string with git__free().
+ */
+char *git_oid_allocfmt(const git_oid *id);
+
GIT_INLINE(int) git_oid__hashcmp(const unsigned char *sha1, const unsigned char *sha2)
{
int i;