home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / BBS / MISC / HSRC_117.ZIP / MAKEMGID.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-11-27  |  177 b   |  13 lines

  1. #include <time.h>
  2.  
  3.  
  4. long make_msgid (void) {
  5.  
  6.     time_t t;
  7.     static unsigned int counter=0;
  8.  
  9.     (void)time(&t);
  10.     t = (t<<4) | (counter++ & 15);
  11.     return t;
  12. }
  13.