You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
316 B
C
13 lines
316 B
C
24 years ago
|
#include <unistd.h>
|
||
|
#include "buffer.h"
|
||
|
|
||
|
static int b0read(int fd,const char* buf, unsigned int len) {
|
||
|
if (buffer_flush(buffer_1)<0) return -1;
|
||
|
return read(fd,buf,len);
|
||
|
}
|
||
|
|
||
|
char buffer_0_space[BUFFER_INSIZE];
|
||
|
static buffer it = BUFFER_INIT(b0read,0,buffer_0_space,sizeof buffer_0_space);
|
||
|
buffer *buffer_0 = ⁢
|
||
|
|