Lines Matching full:file
19 <<tmpfile64>>---create a large temporary file
28 FILE *tmpfile64(void);
30 FILE *_tmpfile64_r(void *<[reent]>);
33 Create a large temporary file (a file which will be deleted automatically),
34 using a name generated by <<tmpnam>>. The temporary file is opened with
36 as a binary file (without any data transformations the host system may
37 perform for text files). The file may be larger than 2GB.
46 <<tmpfile64>> normally returns a pointer to the temporary file. If no
47 temporary file could be created, the result is NULL, and <<errno>>
72 FILE *
75 FILE *fp; in tmpfile64()