home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / ansi / stdio / tmpnam.c < prev   
Encoding:
C/C++ Source or Header  |  1995-04-29  |  210 b   |  16 lines

  1. #include <stdio.h>
  2.  
  3. int
  4. main(void)
  5. {
  6.   int i;
  7.   char buf[1000];
  8.   for (i=0; i<1030; i++)
  9.   {
  10.     char *s = tmpnam(buf);
  11.     if (i<30 || i > 970)
  12.       printf("%d: %s\n", i, s);
  13.   }
  14.   return 0;
  15. }
  16.