summaryrefslogtreecommitdiff
path: root/src/oid.c
diff options
context:
space:
mode:
authorMarc Pegon <pegon.marc@gmail.com>2011-06-06 10:55:36 +0200
committerMarc Pegon <pegon.marc@gmail.com>2011-06-06 17:04:37 +0200
commitc09093cce2902bca40f3c0746bc754780f351a45 (patch)
tree80d7aed83d4d444193d094024781a42fef22a411 /src/oid.c
parentf9213015fddb8636daa993080cbbec70a02cba5c (diff)
downloadlibgit2-c09093cce2902bca40f3c0746bc754780f351a45.tar.gz
Renamed git_oid_match to git_oid_ncmp.
As suggested by carlosmn, git_oid_ncmp would probably be a better name than git_oid_match, for it does the same as git_oid_cmp but only up to a certain amount of hex digits.
Diffstat (limited to 'src/oid.c')
-rw-r--r--src/oid.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/oid.c b/src/oid.c
index 8dc6903cd..aab93cb69 100644
--- a/src/oid.c
+++ b/src/oid.c
@@ -173,7 +173,7 @@ int git_oid_cmp(const git_oid *a, const git_oid *b)
}
-int git_oid_match_raw(unsigned int len, const unsigned char *a, const unsigned char *b)
+int git_oid_ncmp_raw(unsigned int len, const unsigned char *a, const unsigned char *b)
{
do {
if (*a != *b)
@@ -188,14 +188,14 @@ int git_oid_match_raw(unsigned int len, const unsigned char *a, const unsigned c
return 0;
}
-int git_oid_match_hex(unsigned int len, const unsigned char *a, const unsigned char *b)
+int git_oid_ncmp_hex(unsigned int len, const unsigned char *a, const unsigned char *b)
{
return memcmp(a, b, len);
}
-int gid_oid_match(unsigned int len, git_oid *a, git_oid *b)
+int gid_oid_ncmp(unsigned int len, git_oid *a, git_oid *b)
{
- return git_oid_match_raw(len, a->id, b->id);
+ return git_oid_ncmp_raw(len, a->id, b->id);
}
typedef short node_index;