home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1999 February / MACPOWER-1999-02.ISO.7z / MACPOWER-1999-02.ISO / 9902⁄AMUG / UTILITY / mac06-0.95.sit / mac06-0.95 / usr / include / utime.h < prev    next >
Text File  |  1998-07-24  |  220b  |  17 lines

  1. /* mac06ゥ1997,98 by HNS/DSITRI hns@computer.org
  2. ** utime.h
  3. */
  4.  
  5. #pragma once
  6.  
  7. #include "time_t.h"
  8.  
  9. struct utimbuf
  10.     {
  11.     time_t     actime;
  12.     time_t    modtime;
  13.     };
  14.  
  15. int utime(const char *name, const struct utimbuf *tp);
  16.  
  17. /* EOF */