home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c063 / 1.ddi / INCLUDE.ZIP / UTIME.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  607 b   |  35 lines

  1. /*  utime.h
  2.  
  3.     Definitions for utime() function.
  4.  
  5.     Copyright (c) 1991 by Borland International
  6.     All Rights Reserved.
  7. */
  8.  
  9. #if !defined( __DEFS_H )
  10. #include <_defs.h>
  11. #endif
  12.  
  13. #ifndef  _TIME_T
  14. #define  _TIME_T
  15. typedef long time_t;
  16. #endif
  17.  
  18. /* Structure passed to utime containing file times
  19.  */
  20. struct utimbuf
  21. {
  22.         time_t  actime;         /* access time (not used on DOS) */
  23.         time_t  modtime;        /* modification time */
  24. };
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29.  
  30. int    _Cdecl utime(char *__path, struct utimbuf *__times);
  31.  
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35.