We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2d19cc commit 5efb79aCopy full SHA for 5efb79a
1 file changed
src/dynamic/data.h
@@ -87,6 +87,8 @@ DYNAMIC_INLINE data_t data(const void *base, size_t size)
87
return (data_t) {.iov_base = (void *) base, .iov_len = size};
88
}
89
90
+DYNAMIC_INLINE data_t data_null(void);
91
+
92
DYNAMIC_INLINE data_t data_string(const char *string)
93
{
94
return data(string, strlen(string));
0 commit comments