home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 5.ddi / TIME.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  1.0 KB  |  57 lines

  1. /*    time.h
  2.  
  3.     Struct and function declarations for dealing with time.
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl    cdecl
  12. #endif
  13.  
  14. #ifndef _TM_DEFINED
  15. #define _TM_DEFINED
  16.  
  17. #ifndef  __TIME_T
  18. #define  __TIME_T
  19. typedef long    time_t;
  20. #endif
  21.  
  22. #ifndef  __CLOCK_T
  23. #define  __CLOCK_T
  24. typedef long clock_t;
  25. #define CLK_TCK 18.2
  26. #endif
  27.  
  28. struct    tm    {
  29.     int    tm_sec;
  30.     int    tm_min;
  31.     int    tm_hour;
  32.     int    tm_mday;
  33.     int    tm_mon;
  34.     int    tm_year;
  35.     int    tm_wday;
  36.     int    tm_yday;
  37.     int    tm_isdst;
  38. };
  39.  
  40. char    *_Cdecl    asctime    (const struct tm *tblock);
  41. char    *_Cdecl    ctime    (const time_t *time);
  42. double     _Cdecl    difftime(time_t time2, time_t time1);
  43. struct tm *_Cdecl gmtime(const time_t *timer);
  44. struct tm *_Cdecl localtime(const time_t *timer);
  45. time_t     _Cdecl    time    (time_t *timer);
  46. clock_t _Cdecl clock(void);
  47.  
  48. #if !__STDC__
  49. extern int    _Cdecl daylight;
  50. extern long    _Cdecl timezone;
  51.  
  52. int    _Cdecl stime(time_t *tp);
  53. void    _Cdecl tzset(void);
  54. #endif
  55.  
  56. #endif
  57.