Files
mars-libowfat/buffer/buffer_init_read_allocbuf.c
2025-01-20 16:39:51 +00:00

8 lines
167 B
C

#include <unistd.h>
#include <libowfat/buffer.h>
int buffer_init_read_allocbuf(buffer* b, int fd, size_t ylen) {
return buffer_init_allocbuf(b, read, fd, ylen);
}