aded buffer_getc, buffer_getn get n bytes less only if EOF and

buffer_get_token for getting n bytes till finding a termination char or
EOF/error.
This commit is contained in:
sanjiyan
2001-02-05 21:27:55 +00:00
parent faf7c925fe
commit 6838f0f0bb
4 changed files with 43 additions and 0 deletions

12
buffer/buffer_getc.c Normal file
View File

@@ -0,0 +1,12 @@
#include "byte.h"
#include "buffer.h"
int buffer_getc(buffer* b,char* x) {
if (b->p==b->n) {
register int blen;
if ((blen=buffer_feed(b))<=0) return blen;
}
*x=b->x[b->p];
++b->p;
return 1;
}