time.h 414 B

1234567891011121314
  1. #ifndef TIME_H
  2. #define TIME_H
  3. #include "../../include/time.h"
  4. int __clock_gettime(clockid_t, struct timespec *);
  5. char *__asctime_r(const struct tm *, char *);
  6. struct tm *__gmtime_r(const time_t *restrict, struct tm *restrict);
  7. struct tm *__localtime_r(const time_t *restrict, struct tm *restrict);
  8. size_t __strftime_l(char *restrict, size_t, const char *restrict, const struct tm *restrict, locale_t);
  9. #endif