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
242 B
C

#include "byte.h"
#include "buffer.h"
int buffer_get(buffer* b,char* x,unsigned int len) {
int blen;
if ((blen=buffer_feed(b))>=len)
blen=len;
if (blen<=0) return blen;
byte_copy(x,blen,b->x+b->p);
b->p+=blen;
return blen;
}