Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
diff: do not color output when --color=auto and --output=<file> is given
[gitweb.git]
/
strbuf.c
diff --git
a/strbuf.c
b/strbuf.c
index 2c08dbb15381351ede663c1d41ebf3b6838a0c12..1ba600bd780733f7a985c88f797efdd93c1e49fa 100644
(file)
--- a/
strbuf.c
+++ b/
strbuf.c
@@
-395,6
+395,12
@@
ssize_t strbuf_read_once(struct strbuf *sb, int fd, size_t hint)
return cnt;
}
+ssize_t strbuf_write(struct strbuf *sb, FILE *f)
+{
+ return sb->len ? fwrite(sb->buf, 1, sb->len, f) : 0;
+}
+
+
#define STRBUF_MAXLINK (2*PATH_MAX)
int strbuf_readlink(struct strbuf *sb, const char *path, size_t hint)