From 65e7d565e45ca9b87fb3e978cdb4b850d635cb63 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 23 Feb 2023 13:09:46 +0900 Subject: [PATCH] io-util: introduce IOVEC_NULL --- src/basic/io-util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/basic/io-util.h b/src/basic/io-util.h index e7e78e91215..767c8af8fe0 100644 --- a/src/basic/io-util.h +++ b/src/basic/io-util.h @@ -74,6 +74,7 @@ static inline bool FILE_SIZE_VALID_OR_INFINITY(uint64_t l) { } +#define IOVEC_NULL (struct iovec) {} #define IOVEC_INIT(base, len) { .iov_base = (base), .iov_len = (len) } #define IOVEC_MAKE(base, len) (struct iovec) IOVEC_INIT(base, len) #define IOVEC_INIT_STRING(string) IOVEC_INIT((char*) string, strlen(string)) -- 2.47.3