This is Unofficial EPICS BASE Doxygen Site
epicsTempFile.c File Reference
#include <string.h>
#include "epicsTempFile.h"
+ Include dependency graph for epicsTempFile.c:

Go to the source code of this file.

Functions

LIBCOM_API FILE *epicsStdCall epicsTempFile (void)
 Create and open a temporary file. More...
 

Function Documentation

LIBCOM_API FILE* epicsStdCall epicsTempFile ( void  )

Create and open a temporary file.

Returns
NULL or a FILE pointer to a temporary file.

Definition at line 15 of file epicsTempFile.c.

16 {
17  return tmpfile ();
18 }