david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/tests/linebuf_test.c

36 lines
910 B
C
Raw Normal View History

#include <stdint.h>
#include <string.h>
2007-01-19 02:13:12 +01:00
#include <stdio.h>
#include <ipxe/linebuf.h>
static const char data1[] =
"Hello world\r\n"
"This is a reasonably nice set of lines\n"
"with not many different terminators\r\n\r\n"
"There should be exactly one blank line above\n"
"and this line should never appear at all since it has no terminator";
void linebuf_test ( void ) {
struct line_buffer linebuf;
const char *data = data1;
size_t len = ( sizeof ( data1 ) - 1 /* be mean; strip the NUL */ );
2007-07-03 22:21:50 +02:00
ssize_t frag_len;
char *line;
memset ( &linebuf, 0, sizeof ( linebuf ) );
while ( len ) {
2007-07-03 22:21:50 +02:00
frag_len = line_buffer ( &linebuf, data, len );
if ( frag_len < 0 ) {
printf ( "line_buffer() failed: %s\n",
2007-07-03 22:21:50 +02:00
strerror ( frag_len ) );
return;
}
2007-07-03 22:21:50 +02:00
data += frag_len;
len -= frag_len;
if ( ( line = buffered_line ( &linebuf ) ) )
printf ( "\"%s\"\n", line );
}
empty_line_buffer ( &linebuf );
}