summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVicent Marti <vicent@github.com>2014-07-16 14:21:53 -0700
committerVicent Marti <vicent@github.com>2014-07-16 14:21:53 -0700
commit091165c53b2bcd5d41fb71d43ed5a23a3d96bf5d (patch)
treec270dbcd5386cc767eecdf09a42e9099ca04b7ea /src
parentec813d83e757df2c4c8d7984e9ac993e7518fad6 (diff)
parentb3af2d80d2d6393dada89c713baff9b3eba49a01 (diff)
downloadlibgit2-091165c53b2bcd5d41fb71d43ed5a23a3d96bf5d.tar.gz
Merge pull request #2475 from libgit2/expose-buffer-binary-detection
Export git_buf_text_is_binary and git_buf_text_contains_nul.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index b8f8660ed..1bee9d70b 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -7,6 +7,7 @@
#include "buffer.h"
#include "posix.h"
#include "git2/buffer.h"
+#include "buf_text.h"
#include <ctype.h>
/* Used as default value for git_buf->ptr so that people can always
@@ -141,6 +142,16 @@ int git_buf_set(git_buf *buf, const void *data, size_t len)
return 0;
}
+int git_buf_is_binary(const git_buf *buf)
+{
+ return git_buf_text_is_binary(buf);
+}
+
+int git_buf_contains_nul(const git_buf *buf)
+{
+ return git_buf_text_contains_nul(buf);
+}
+
int git_buf_sets(git_buf *buf, const char *string)
{
return git_buf_set(buf, string, string ? strlen(string) : 0);