M
Markus Dehmann
In the GNU C library (stdio.h), there is a function
FILE* fmemopen (void *buf, size_t size, const char *opentype)
It opens a FILE stream that allows read or write access to the buffer
buf.
Does anyone know how to implement this so that it can also be used on
non-GNU systems? Only read access would be okay.
Thanks
Markus
FILE* fmemopen (void *buf, size_t size, const char *opentype)
It opens a FILE stream that allows read or write access to the buffer
buf.
Does anyone know how to implement this so that it can also be used on
non-GNU systems? Only read access would be okay.
Thanks
Markus