utime.h

来自「cygwin, 著名的在win32下模拟unix操作系统的东东」· C头文件 代码 · 共 33 行

H
33
字号
/* *  $Id: utime.h,v 1.1 2002/11/07 19:27:36 jjohnstn Exp $ */#ifndef __UTIME_h__#define __UTIME_h__#ifdef __cplusplusextern "C" {#endif/* *  POSIX 1003.1b 5.6.6 Set File Access and Modification Times */struct utimbuf {  time_t  actime;   /* Access time */  time_t  modtime;  /* Modification time */};/* Functions */int utime(  const char           *path,  const struct utimbuf *times);#ifdef __cplusplus};#endif#endif /* _SYS_UTIME_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?