home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / utime.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  505b  |  31 lines

  1. /* sys/utime.h
  2.  
  3.    Copyright 2001 Red Hat, Inc.
  4.  
  5.    This software is a copyrighted work licensed under the terms of the
  6.    Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  7.    details. */
  8.  
  9. #ifndef _SYS_UTIME_H
  10. #define _SYS_UTIME_H
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include <_ansi.h>
  16. #include <sys/types.h>
  17.  
  18. struct utimbuf 
  19. {
  20.   time_t actime;
  21.   time_t modtime; 
  22. };
  23.  
  24. int _EXFUN(utime, (const char *__path, struct utimbuf *__buf));
  25.  
  26. #ifdef __cplusplus
  27. };
  28. #endif
  29.  
  30. #endif /* _SYS_UTIME_H */
  31.