[source navigation] [diff markup] [identifier search] [freetext search] [file search]

Oldlinux Cross Reference
Linux/include/utime.h

Version: [1.0] [0.99.11] [0.99] [0.98] [0.97] [0.96a] [0.95] [0.12] [0.11] [0.01]
Architecture: [i386]

  1 #ifndef _UTIME_H
  2 #define _UTIME_H
  3 
  4 #include <sys/types.h>  /* I know - shouldn't do this, but .. */
  5 
  6 struct utimbuf {
  7         time_t actime;
  8         time_t modtime;
  9 };
 10 
 11 extern int utime(const char *filename, struct utimbuf *times);
 12 
 13 #endif
 14 

[source navigation] [diff markup] [identifier search] [freetext search] [file search]

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.