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
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
#include <unistd.h>
|
||||
#include <libowfat/buffer.h>
|
||||
|
||||
int buffer_init_allocbuf(buffer* b, ssize_t (*op)(), int fd, size_t ylen) {
|
||||
int buffer_init_allocbuf(buffer* b, ssize_t (*op)(int fd,const void* buf,size_t l), int fd, size_t ylen) {
|
||||
if (fd==-1) return -1;
|
||||
char* thebuffer;
|
||||
if (!(thebuffer=malloc(ylen)))
|
||||
@@ -11,3 +11,6 @@ int buffer_init_allocbuf(buffer* b, ssize_t (*op)(), int fd, size_t ylen) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int buffer_init_allocbuf_forread(buffer* b, ssize_t (*op)(int fd,void* buf,size_t l), int fd, size_t ylen) {
|
||||
return buffer_init_allocbuf(b,(void*)op,fd,ylen);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user