home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / ThinkCPosix 1.1 / utime.h < prev   
Encoding:
C/C++ Source or Header  |  1992-09-18  |  144 b   |  14 lines  |  [TEXT/KAHL]

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. #include "ThinkCPosix.h"
  6.  
  7. struct utimbuf {
  8.     time_t actime;
  9.     time_t modtime;
  10. };
  11.  
  12. int utime(char*, struct utimbuf*);
  13.  
  14.