libs/utils/include/memstream/open_memstream.h (12 lines of code) (raw):
#ifndef OPEN_MEMSTREAM_H_
#define OPEN_MEMSTREAM_H_
#include <stdio.h>
#ifdef __cplusplus
extern "C"
{
#endif
FILE *open_memstream(char **cp, size_t *lenp);
#ifdef __cplusplus
}
#endif
#endif // #ifndef FMEMOPEN_H_