diff options
author | Martin Koegler <mkoegler@auto.tuwien.ac.at> | 2007-04-23 22:55:05 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-24 00:08:49 -0700 |
commit | a0cd87a57044efa8aef39b476fd9240af57a1853 (patch) | |
tree | 2a6ce33e0d2f29918b7bc2347282a47e2f9acb9b /cache.h | |
parent | 40689ae1ef9a05503c75298ec50b194ca9d15522 (diff) | |
download | git-a0cd87a57044efa8aef39b476fd9240af57a1853.tar.gz |
add get_sha1_with_mode
get_sha1_with_mode basically behaves as get_sha1. It has an additional
parameter for storing the mode of the object.
If the mode can not be determined, it stores S_IFINVALID.
Signed-off-by: Martin Koegler <mkoegler@auto.tuwien.ac.at>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -342,6 +342,7 @@ static inline unsigned int hexval(unsigned int c) #define DEFAULT_ABBREV 7 extern int get_sha1(const char *str, unsigned char *sha1); +extern int get_sha1_with_mode(const char *str, unsigned char *sha1, unsigned *mode); extern int get_sha1_hex(const char *hex, unsigned char *sha1); extern char *sha1_to_hex(const unsigned char *sha1); /* static buffer result! */ extern int read_ref(const char *filename, unsigned char *sha1); |