Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2023-04-22 23:17:13 +0300
committerJunio C Hamano <gitster@pobox.com>2023-04-24 22:47:32 +0300
commit9b5041f647fa5d9921b9b4f8be6b36cb39591166 (patch)
tree1155c7d5e2e45383044d914af051b06c00d1539e /cache.h
parentd5fff46f4025e23ec61b9d74eac2bb19e7a2385d (diff)
base85.h: move declarations for base85.c functions from cache.h
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/cache.h b/cache.h
index 2b66176479..b89f4c5980 100644
--- a/cache.h
+++ b/cache.h
@@ -593,10 +593,6 @@ int df_name_compare(const char *name1, size_t len1, int mode1,
int name_compare(const char *name1, size_t len1, const char *name2, size_t len2);
int cache_name_stage_compare(const char *name1, int len1, int stage1, const char *name2, int len2, int stage2);
-/* base85 */
-int decode_85(char *dst, const char *line, int linelen);
-void encode_85(char *buf, const unsigned char *data, int bytes);
-
/* pkt-line.c */
void packet_trace_identity(const char *prog);