|
| iMatix home page | << | < | > | >> |
SFLVersion 2.11 |
#include "sfllbuf.h" void linebuf_reset (LINEBUF *buffer)
Resets a line buffer; i.e. empties it of all data. This is done simply by setting the tail and head to the start of the buffer.
{
ASSERT (buffer);
buffer-> head = buffer-> data;
buffer-> tail = buffer-> data;
}
| | << | < | > | >> |
|