1 /* 2 * Copyright 2002-2012 Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _UTIME_H_ 6 #define _UTIME_H_ 7 8 9 #include <sys/types.h> 10 11 12 struct utimbuf { 13 time_t actime; /* access time */ 14 time_t modtime; /* modification time */ 15 }; 16 17 18 extern 19 #ifdef __cplusplus 20 "C" 21 #endif 22 int utime(const char *path, const struct utimbuf *buffer); 23 24 #endif /* _UTIME_H_ */ 25