char*buffer;/* buffer pointer - this never changes except during allocate and deallocate */
char*start;/* buffer pointer copy - this never changes except during allocate and deallocate , but it is used in a lot of arithmetic hence the paranoia copy */
unsignedintbuf_size;/* buffer size - this never changes except during allocate and deallocate */
unsignedintread_size;/* buffer size that can be read */
unsignedintwrite_size;/* buffer size that can be written */
char*begin;/* beginning of the used portion of the buffer */
char*end;/* end of the used portion of the buffer */
char*tail;/* one char past the last char of the buffer */
char*buffer;/* buffer pointer - this never changes except during allocate and deallocate */
char*start;/* buffer pointer copy - this never changes except during allocate and deallocate , but it is used in a lot of arithmetic hence the paranoia copy */
unsignedintbuf_size;/* buffer size - this never changes except during allocate and deallocate */
unsignedintread_size;/* buffer size that can be read */
unsignedintwrite_size;/* buffer size that can be written */
char*begin;/* beginning of the used portion of the buffer */
char*end;/* end of the used portion of the buffer */
char*tail;/* one char past the last char of the buffer */