URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [linux/] [uClibc/] [libc/] [misc/] [internals/] [tempname.h] - Rev 1782
Compare with Previous | Blame | View Log
#ifndef __TEMPNAME_H__ #define __TEMPNAME_H__ #define __need_size_t #include <stddef.h> extern int __path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx, int try_tmpdir); extern int __gen_tempname (char *__tmpl, int __kind); /* The __kind argument to __gen_tempname may be one of: */ #define __GT_FILE 0 /* create a file */ #define __GT_BIGFILE 1 /* create a file, using open64 */ #define __GT_DIR 2 /* create a directory */ #define __GT_NOCREATE 3 /* just find a name not currently in use */ #endif