Files
mars-libowfat/buffer/buffer_frombuf.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
316 B
C

#include "stralloc.h"
#include "buffer.h"
static ssize_t dummyreadwrite(int fd,void* buf,size_t len) {
(void)fd;
(void)buf;
(void)len;
return 0;
}
void buffer_frombuf(buffer* b,const char* x,size_t l) {
b->x=(char*)x;
b->p=0;
b->n=l;
b->a=l;
b->fd=0;
b->op.rop=dummyreadwrite;
b->deinit=0;
}