This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| struct | webServerSpecific |
Functions | |
| char * | rTempName (char *dir, char *base, char *suffix) |
Variables | |
| webServerSpecific wssMicrosoftII wssMicrosoftPWS wssDefault wssLinux wssCommandLine | wssBrcMcw |
| char* rTempName | ( | char * | dir, | |
| char * | base, | |||
| char * | suffix | |||
| ) |
Definition at line 282 of file osunix.c.
References fileExists(), PATH_LEN, safef(), and semiUniqName().
00284 { 00285 char *x; 00286 static char fileName[PATH_LEN]; 00287 int i; 00288 for (i=0;;++i) 00289 { 00290 x = semiUniqName(base); 00291 safef(fileName, sizeof(fileName), "%s/%s%d%s", 00292 dir, x, i, suffix); 00293 if (!fileExists(fileName)) 00294 break; 00295 } 00296 return fileName; 00297 }
Here is the call graph for this function:

1.5.2