Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/hex.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2016-06-25 02:09:19 +0300
committerJunio C Hamano <gitster@pobox.com>2016-06-28 21:39:02 +0300
commit55c529a7005c653ceb318e1e25b40ff96a41877f (patch)
tree852bc2ac950ce6c96bb92f5caa3ffafee740f0f6 /hex.c
parent05219a1276341e72d8082d76b7f5ed394b7437a4 (diff)
hex: add oid_to_hex_r()
This function works just like sha1_to_hex_r, except that it takes a pointer to struct object_id instead of a pointer to unsigned char. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'hex.c')
-rw-r--r--hex.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/hex.c b/hex.c
index 0519f853b2..9619b67af0 100644
--- a/hex.c
+++ b/hex.c
@@ -77,6 +77,11 @@ char *sha1_to_hex_r(char *buffer, const unsigned char *sha1)
return buffer;
}
+char *oid_to_hex_r(char *buffer, const struct object_id *oid)
+{
+ return sha1_to_hex_r(buffer, oid->hash);
+}
+
char *sha1_to_hex(const unsigned char *sha1)
{
static int bufno;