mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
439 B
17 lines
439 B
#include "byte.h" |
|
#include "buffer.h" |
|
|
|
extern int buffer_stubborn(ssize_t (*op)(),int fd,const char* buf, size_t len,void* cookie); |
|
|
|
int buffer_put(buffer* b,const char* buf,size_t len) { |
|
if (len>b->a-b->p) { /* doesn't fit */ |
|
if (buffer_flush(b)==-1) return -1; |
|
if (len>b->a) { |
|
if (buffer_stubborn(b->op,b->fd,buf,len,b)<0) return -1; |
|
return 0; |
|
} |
|
} |
|
byte_copy(b->x+b->p, len, buf); |
|
b->p+=len; |
|
return 0; |
|
}
|
|
|