Files
mars-libowfat/buffer/buffer_get_token_sa_pred.c
leitner b7b8a0efc1 gcc 15 and C23 force some union trickery on buffer.h :-(
add a few buffer_init*_forread variants to pretend we have type safety
  make sure buffer_init_staticcontents handles flushing attempts
2025-04-22 09:32:03 +00:00

20 lines
396 B
C

#include "stralloc.h"
#include "buffer.h"
int buffer_get_token_sa_pred(buffer* b,stralloc* sa,sa_predicate p) {
for (;;) {
char x;
if (!stralloc_readyplus(sa,1)) return -1;
switch (buffer_getc(b,&x)) {
case -1: return -1;
case 0: return 0;
}
stralloc_append(sa,&x);
switch (p(sa)) {
case -1: return -1;
case 0: break;
case 1: return 0;
}
}
}