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>
This commit is contained in:

committed by
Junio C Hamano

parent
40689ae1ef
commit
a0cd87a570
1
cache.h
1
cache.h
@ -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);
|
||||
|
Reference in New Issue
Block a user