home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 1997 Hardware / HARDWARE.ISO / hardware / asbnch / source / random.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-27  |  231 b   |  15 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <time.h>
  4.  
  5.  
  6. int init=0;
  7.  
  8. int random(int imax)
  9. {
  10.     if (init==0)
  11.         srand( (unsigned)time( NULL ) );
  12.     init=1;
  13.     return (int)((rand()*((long)imax))/RAND_MAX);
  14.  
  15. }