diff options
author | nulltoken <emeric.fermas@gmail.com> | 2015-02-10 09:38:57 +0100 |
---|---|---|
committer | nulltoken <emeric.fermas@gmail.com> | 2015-02-10 10:57:29 +0100 |
commit | a2012c43899e6616366b47d7741b3f035e825e84 (patch) | |
tree | b5cf260f4082292deb9584a3e8761035d38ebcc4 /src | |
parent | b703049c6189fec223896999b9cf5d78efcb08d7 (diff) | |
download | libgit2-ntk/expose_git_buf_put.tar.gz |
buffer: Expose git_buf_put() to bindingsntk/expose_git_buf_put
Diffstat (limited to 'src')
-rw-r--r-- | src/buffer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index 8ee4b532c..ac74c95a4 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -89,7 +89,6 @@ GIT_INLINE(bool) git_buf_oom(const git_buf *buf) int git_buf_sets(git_buf *buf, const char *string); int git_buf_putc(git_buf *buf, char c); int git_buf_putcn(git_buf *buf, char c, size_t len); -int git_buf_put(git_buf *buf, const char *data, size_t len); int git_buf_puts(git_buf *buf, const char *string); int git_buf_printf(git_buf *buf, const char *format, ...) GIT_FORMAT_PRINTF(2, 3); int git_buf_vprintf(git_buf *buf, const char *format, va_list ap); |