Searched defs:pfx (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/upstream-freebsd/lib/libc/stdio/
H A Dtempnam.c50 tempnam(const char *dir, const char *pfx) argument
58 if (!pfx)
59 pfx = "tmp.";
63 *(f + strlen(f) - 1) == '/'? "": "/", pfx);
70 *(f + strlen(f) - 1) == '/'? "": "/", pfx);
76 (void)snprintf(name, MAXPATHLEN, "%s%sXXXXXX", f, pfx);
81 (void)snprintf(name, MAXPATHLEN, "%s%sXXXXXX", f, pfx);

Completed in 59 milliseconds