libclamav/jsparse/textbuf.h
4a6ade44
 #ifndef TEXTBUF_H
 #define TEXTBUF_H
 struct text_buffer {
 	char *data;
 	size_t pos;
 	size_t capacity;
 };
 
 static inline int textbuffer_ensure_capacity(struct text_buffer *txtbuf, size_t len)
 {
 	if (txtbuf->pos + len > txtbuf->capacity) {
 		char *d;
b0033c8f
 		unsigned capacity = MAX(txtbuf->pos + len, txtbuf->capacity + 4096);
 		d = cli_realloc(txtbuf->data, capacity);
4a6ade44
 		if(!d)
 			return -1;
b0033c8f
 		txtbuf->capacity = capacity;
4a6ade44
 		txtbuf->data = d;
 	}
 	return 0;
 }
 
eb290151
 static inline int textbuffer_append_len(struct text_buffer *txtbuf, const char *s, size_t len)
4a6ade44
 {
eb290151
 	if(textbuffer_ensure_capacity(txtbuf, len) == -1)
 		return -1;
4a6ade44
 	memcpy(&txtbuf->data[txtbuf->pos], s, len);
 	txtbuf->pos += len;
eb290151
 	return 0;
4a6ade44
 }
 
 
eb290151
 static inline int textbuffer_append(struct text_buffer *txtbuf, const char *s)
4a6ade44
 {
 	size_t len = strlen(s);
eb290151
 	return textbuffer_append_len(txtbuf, s, len);
4a6ade44
 }
 
eb290151
 static inline int textbuffer_putc(struct text_buffer *txtbuf, const char c)
4a6ade44
 {
eb290151
 	if(textbuffer_ensure_capacity(txtbuf, 1) == -1)
 		return -1;
4a6ade44
 	txtbuf->data[txtbuf->pos++] = c;
eb290151
 	return 0;
4a6ade44
 }
 #endif