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.
18 lines
442 B
C
18 lines
442 B
C
#include "byte.h"
|
|
#include "buffer.h"
|
|
|
|
extern int buffer_stubborn(int (*op)(),int fd,const char* buf, unsigned long int len);
|
|
|
|
int buffer_put(buffer* b,const char* buf,unsigned long int 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)<0) return -1;
|
|
return 0;
|
|
}
|
|
}
|
|
byte_copy(b->x+b->p, len, buf);
|
|
b->p+=len;
|
|
return 0;
|
|
}
|