diff options
Diffstat (limited to 'buffer.h')
| -rw-r--r-- | buffer.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,5 +23,7 @@ void buffer_truncate(Buffer*); bool buffer_put(Buffer*, const void *data, size_t len); /* append futher content to the end of the buffer data */ bool buffer_append(Buffer*, const void *data, size_t len); +/* append NUl-terminated data */ +bool buffer_append0(Buffer*, const char *data); #endif |
