Trailing-Edge
-
PDP-10 Archives
-
SRI_NIC_PERM_FS_1_19910112
-
c/lib5/test/ttmpfs.c
There are 4 other files named ttmpfs.c in the archive. Click here to see a list.
#include <stdio.h>
main()
{
char *fstr, tmpbuf[L_tmpnam];
int i;
for (i = 0; i < 10; ++i) {
printf("Result of tmpnam(0): \"%s\"\n", tmpnam(NULL));
}
for (i = 0; i < 10; ++i) {
fstr = strcpy(tmpbuf, "name.XXXXXX");
printf("Result of mktemp(%s): ", fstr);
printf("\"%s\"\n", mktemp(fstr));
}
printf("Opening 10 tmpfiles...\n");
for (i = 0; i < 10; ++i) {
printf("Result of tmpfile(): %o\n", tmpfile());
}
}