utime.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:0k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* utime.h - POSIX file time modification */
  2. #ifndef __INCutimeh
  3. #define __INCutimeh
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. struct utimbuf
  8.     {
  9.     time_t actime; /* set the access time */
  10.     time_t modtime; /* set the modification time */
  11.     };
  12. #if defined(__STDC__) || defined(__cplusplus)
  13. extern int utime (char * file, struct utimbuf * newTimes);
  14. #else 
  15. extern int utime ();
  16. #endif /* __STDC__ */
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif /* __INCdosFsLibh */