This is Unofficial EPICS BASE Doxygen Site
epicsTempFile.c
Go to the documentation of this file.
1 /*************************************************************************\
2 * Copyright (c) 2002 The University of Chicago, as Operator of Argonne
3 * National Laboratory.
4 * Copyright (c) 2002 The Regents of the University of California, as
5 * Operator of Los Alamos National Laboratory.
6 * EPICS BASE Versions 3.13.7
7 * and higher are distributed subject to a Software License Agreement found
8 * in file LICENSE that is included with this distribution.
9 \*************************************************************************/
10 
11 #include <string.h>
12 
13 #include "epicsTempFile.h"
14 
15 LIBCOM_API FILE * epicsStdCall epicsTempFile ( void )
16 {
17  return tmpfile ();
18 }
19 
LIBCOM_API FILE *epicsStdCall epicsTempFile(void)
Create and open a temporary file.
Definition: epicsTempFile.c:15
OS-independent way to create temporary files.