diff options
author | Christian Couder <christian.couder@gmail.com> | 2017-02-27 19:00:11 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-01 13:24:22 -0800 |
commit | 6a5e6f5e4496d5647e9b11352d055efed434029e (patch) | |
tree | 6840f8b909acd0b640307942fc2f4bf2fd106f4d /cache.h | |
parent | e77cf4ee6597953b21454b77eee9666ad0e0063b (diff) | |
download | git-6a5e6f5e4496d5647e9b11352d055efed434029e.tar.gz |
sha1_file: make check_and_freshen_file() non static
This function will be used in a commit soon, so let's make
it available globally.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1170,6 +1170,9 @@ extern int has_pack_index(const unsigned char *sha1); extern void assert_sha1_type(const unsigned char *sha1, enum object_type expect); +/* Helper to check and "touch" a file */ +extern int check_and_freshen_file(const char *fn, int freshen); + extern const signed char hexval_table[256]; static inline unsigned int hexval(unsigned char c) { |