📄 utime.h
字号:
/* * $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -