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.
|
#include "byte.h"
|
|
#include "buffer.h"
|
|
|
|
ssize_t buffer_getc(buffer* b,char* x) {
|
|
if (b->p==b->n) {
|
|
register ssize_t blen;
|
|
if ((blen=buffer_feed(b))<=0) return blen;
|
|
}
|
|
*x=b->x[b->p];
|
|
++b->p;
|
|
return 1;
|
|
}
|