5#define DSTRING_CHUNK_SIZE 100
A dynamic string (dstring) that automatically reallocate her buffer when needed.
unsigned int length
The length of the string.
unsigned int _buffer_size
The size of the allocated buffer for the string.
char * data
Pointer for the raw string content (a normal C string).
struct dstring dstring_t
A dynamic string (dstring) that automatically reallocate her buffer when needed.