Searched defs:pfx (Results 1 - 1 of 1) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | tempnam.c | 69 gentemp(char *name, size_t len, const char *tmp, const char *pfx) argument 71 (void)snprintf(name, len, "%s%s%sXXXX", tmp, trailsl(tmp), pfx); 76 tempnam(const char *dir, const char *pfx) argument 85 if (!pfx) 86 pfx = "tmp."; 89 (f = gentemp(name, (size_t)MAXPATHLEN, tmp, pfx)) != NULL) 93 (f = gentemp(name, (size_t)MAXPATHLEN, dir, pfx)) != NULL) 96 //if ((f = gentemp(name, (size_t)MAXPATHLEN, P_tmpdir, pfx)) != NULL) 99 if ((f = gentemp(name, (size_t)MAXPATHLEN, _PATH_TMP, pfx)) != NULL)
|
Completed in 806 milliseconds