8#ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_TIME_H_
9#define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_TIME_H_
36#if !defined(__time_t_defined)
37#define __time_t_defined
41#if !defined(__suseconds_t_defined)
42#define __suseconds_t_defined
_TIME_T_ time_t
Definition _timespec.h:14
_SUSECONDS_T_ suseconds_t
Definition _timespec.h:19
char * asctime(const struct tm *timeptr)
char * ctime(const time_t *clock)
struct tm * localtime_r(const time_t *ZRESTRICT timer, struct tm *ZRESTRICT result)
struct tm * localtime(const time_t *timer)
struct tm * gmtime(const time_t *timep)
char * asctime_r(const struct tm *ZRESTRICT tp, char *ZRESTRICT buf)
time_t time(time_t *tloc)
char * ctime_r(const time_t *clock, char *buf)
struct tm * gmtime_r(const time_t *ZRESTRICT timep, struct tm *ZRESTRICT result)
int tm_mon
Definition time.h:29
int tm_year
Definition time.h:30
int tm_hour
Definition time.h:27
int tm_sec
Definition time.h:25
int tm_isdst
Definition time.h:33
int tm_yday
Definition time.h:32
int tm_mday
Definition time.h:28
int tm_min
Definition time.h:26
int tm_wday
Definition time.h:31