aboutsummaryrefslogtreecommitdiffstats
path: root/iov.h
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2011-07-13 15:16:08 +0200
committerGerd Hoffmann <kraxel@redhat.com>2011-08-04 15:51:22 +0200
commit8d15028ec03999fa6eca8dba7ef7cd4eb575486b (patch)
treef1e307c00f1bf86de0e9a177f9069f3f005adfdd /iov.h
parent3a1dca94d6dba00fe0fd4c4a28449f57e01b9b6c (diff)
Add iov_clear()
Fill the spefified area with zeros. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'iov.h')
-rw-r--r--iov.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/iov.h b/iov.h
index c2c5b39b8..94d2f7828 100644
--- a/iov.h
+++ b/iov.h
@@ -17,5 +17,7 @@ size_t iov_from_buf(struct iovec *iov, unsigned int iov_cnt,
size_t iov_to_buf(const struct iovec *iov, const unsigned int iov_cnt,
void *buf, size_t iov_off, size_t size);
size_t iov_size(const struct iovec *iov, const unsigned int iov_cnt);
+size_t iov_clear(const struct iovec *iov, const unsigned int iov_cnt,
+ size_t iov_off, size_t size);
void iov_hexdump(const struct iovec *iov, const unsigned int iov_cnt,
FILE *fp, const char *prefix, size_t limit);