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

15
buffer/buffer_get_token.c Normal file
View File

@@ -0,0 +1,15 @@
#include "byte.h"
#include "buffer.h"
#include "scan.h"
int buffer_get_token(buffer* b,char* x,unsigned int len,const char* charset,unsigned int setlen) {
int blen;
for (blen=0;blen<len;++blen) {
if ((r=buffer_getc(b,*x))<0) return r;
if (r==0) return blen;
if (byte_chr(charset,clen,*x)<clen) return blen;
++x;
}
return blen;
}