#include "byte.h"
#include "buffer.h"

extern int buffer_stubborn(int (*op)(),int fd,const char* buf, unsigned int len);

int buffer_put(buffer* b,const char* buf,unsigned int len) {
  if (len>b->n-b->p) {	/* doesn't fit */
    if (buffer_flush(b)==-1) return -1;
    if (len>b->n) {
      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;
}