home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / sound / nh10src / timetst.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-15  |  379 b   |  25 lines

  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5.      char txt[30];
  6.      unsigned x;
  7.  
  8.      x = 3600;
  9.      int2time(x, txt);
  10.      puts (txt);
  11.      return;
  12. }
  13.  
  14.  
  15. int2time(unsigned x, char *txt)
  16. {
  17.      char tmp[5];
  18.      sprintf (tmp, "%02d:", x / 3600);
  19.      strcpy (txt, tmp);
  20.      sprintf (tmp, "%02d:", (x % 3600) / 60);
  21.      strcat (txt, tmp);
  22.      sprintf (tmp, "%02d", (x % 3600) % 60);
  23.      strcat (txt, tmp);
  24. }
  25.