summaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2014-04-22 14:58:33 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2014-04-22 19:08:21 -0500
commite349ed500b75349b1a525fce60dc08c8d8927ba0 (patch)
tree94feff27cae54ceeff8a8920923f1ca573d7833f /src/buffer.h
parent28750a7d98ce5e23bac5c1d119109ded8e8aab73 (diff)
downloadlibgit2-e349ed500b75349b1a525fce60dc08c8d8927ba0.tar.gz
patch: emit binary patches (optionally)
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 398aec9b7..70d6d73b3 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -158,6 +158,9 @@ int git_buf_cmp(const git_buf *a, const git_buf *b);
/* Write data as base64 encoded in buffer */
int git_buf_put_base64(git_buf *buf, const char *data, size_t len);
+/* Write data as "base85" encoded in buffer */
+int git_buf_put_base85(git_buf *buf, const char *data, size_t len);
+
/*
* Insert, remove or replace a portion of the buffer.
*