I'm playing around with mkstemp(), which provides a file descriptor, but I want to generate formatted output via fprintf(). Is there an easy way to transform the file descriptor provided by mkstemp() into a FILE * structure that is suitable for use with fprintf()?
|
feedback
|
|
Use fdopen():
| |||
feedback
|
|
man fdopen output:
| ||||
|
feedback
|
|
There is no standard way of doing this (or the reverse) as the C Standard has nothing to say about file descriptors. Your specific platform may or may not provide such a mechanism. | |||||||||||||||||||||
feedback
|