summaryrefslogtreecommitdiff
path: root/refs.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-07-05 18:31:32 (GMT)
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-05 18:31:32 (GMT)
commit723c31fea2f1c4994de837bda9022ffa8b6de1bb (patch)
tree4c8c636dd58a7489cf033f3ac8682aeab453385d /refs.h
parent7a662e896bcd391265477e304d7af6e5d2ca1deb (diff)
downloadgit-723c31fea2f1c4994de837bda9022ffa8b6de1bb.zip
git-723c31fea2f1c4994de837bda9022ffa8b6de1bb.tar.gz
git-723c31fea2f1c4994de837bda9022ffa8b6de1bb.tar.bz2
Add "git_path()" and "head_ref()" helper functions.
"git_path()" returns a static pathname pointer into the git directory using a printf-like format specifier. "head_ref()" works like "for_each_ref()", except for just the HEAD.
Diffstat (limited to 'refs.h')
-rw-r--r--refs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/refs.h b/refs.h
index a79cb13..2625596 100644
--- a/refs.h
+++ b/refs.h
@@ -5,6 +5,7 @@
* Calls the specified function for each ref file until it returns nonzero,
* and returns the value
*/
+extern int head_ref(int (*fn)(const char *path, const unsigned char *sha1));
extern int for_each_ref(int (*fn)(const char *path, const unsigned char *sha1));
/** Reads the refs file specified into sha1 **/