[BACK]Return to time.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/time.h between version 1.13 and 1.14

version 1.13, 2003/06/02 19:34:12 version 1.14, 2003/06/26 18:35:13
Line 93 
Line 93 
 struct tm *gmtime(const time_t *);  struct tm *gmtime(const time_t *);
 struct tm *localtime(const time_t *);  struct tm *localtime(const time_t *);
 time_t mktime(struct tm *);  time_t mktime(struct tm *);
 size_t strftime(char *, size_t, const char *, const struct tm *);  size_t strftime(char *, size_t, const char *, const struct tm *)
                   __attribute__ ((__bounded__(__string__,1,2)));
 char *strptime(const char *, const char *, struct tm *);  char *strptime(const char *, const char *, struct tm *);
 time_t time(time_t *);  time_t time(time_t *);
 char *asctime_r(const struct tm *, char *);  char *asctime_r(const struct tm *, char *)
 char *ctime_r(const time_t *, char *);                  __attribute__ ((__bounded__(__minbytes__,2,26)));
   char *ctime_r(const time_t *, char *)
                   __attribute__ ((__bounded__(__minbytes__,2,26)));
 struct tm *gmtime_r(const time_t *, struct tm *);  struct tm *gmtime_r(const time_t *, struct tm *);
 struct tm *localtime_r(const time_t *, struct tm *);  struct tm *localtime_r(const time_t *, struct tm *);
 int nanosleep(const struct timespec *, struct timespec *);  int nanosleep(const struct timespec *, struct timespec *);

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14