diff options
Diffstat (limited to 'buffer.h')
-rw-r--r-- | buffer.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -277,6 +277,11 @@ bool buf_printf (struct buffer *buf, const char *format, ...) ; /* + * puts append to a buffer with overflow check + */ +bool buf_puts (struct buffer *buf, const char *str); + +/* * Like snprintf but guarantees null termination for size > 0 */ int openvpn_snprintf(char *str, size_t size, const char *format, ...) |