#include <stdio.h> FILE *open_memstream(char **bufp, size_t *sizep); #include <wchar.h> FILE *open_wmemstream(wchar_t **bufp, size_t *sizep);
The stream associated with a call to open_memstream() shall be byte-oriented.
The stream associated with a call to open_wmemstream() shall be wide-oriented.
The stream shall maintain a current position in the allocated buffer and a current buffer length. The position shall be initially set to zero (the start of the buffer). Each write to the stream shall start at the current position and move this position by the number of successfully written bytes for open_memstream() or the number of successfully written wide characters for open_wmemstream(). The length shall be initially set to zero. If a write moves the position to a value larger than the current length, the current length shall be set to this position. In this case a null character for open_memstream() or a null wide character for open_wmemstream() shall be appended to the current buffer. For both functions the terminating null is not included in the calculation of the buffer length.
After a successful fflush() or fclose(), the pointer referenced by bufp shall contain the address of the buffer, and the variable pointed to by sizep shall contain the smaller of the current buffer length and the number of bytes for open_memstream(), or the number of wide characters for open_wmemstream(), between the beginning of the buffer and the current file position indicator.
After a successful fflush() the pointer referenced by bufp and the variable referenced by sizep remain valid only until the next write operation on the stream or a call to fclose().
After a successful fclose(), the pointer referenced by bufp can be passed to free().
These functions may fail if:
The following sections are informative.
#include <stdio.h> #include <stdlib.h> int main (void) { FILE *stream; char *buf; size_t len; off_t eob; stream = open_memstream (&buf, &len); if (stream == NULL) /* handle error */ ; fprintf (stream, "hello my world"); fflush (stream); printf ("buf=%s, len=%zu\n", buf, len); eob = ftello(stream); fseeko (stream, 0, SEEK_SET); fprintf (stream, "good-bye"); fseeko (stream, eob, SEEK_SET); fclose (stream); printf ("buf=%s, len=%zu\n", buf, len); free (buf); return 0; }
This program produces the following output:
buf=hello my world, len=14 buf=good-bye world, len=14
The Base Definitions volume of POSIX.1-2017, <stdio.h>, <wchar.h>
Any typographical or formatting errors that appear in this page are most likely to have been introduced during the conversion of the source files to man page format. To report such errors, see https://www.kernel.org/doc/man-pages/reporting_bugs.html .