25 lines
541 B
C
25 lines
541 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
*/
|
|
#ifndef __TIME_H__
|
|
#define __TIME_H__
|
|
|
|
#include <sys/time.h>
|
|
|
|
time_t mktime(struct tm * const t);
|
|
|
|
char *asctime(const struct tm *timeptr);
|
|
char *ctime(const time_t *timep);
|
|
struct tm* localtime(const time_t* t);
|
|
|
|
char *asctime_r(const struct tm *t, char *buf);
|
|
struct tm *gmtime_r(const time_t *timep, struct tm *r);
|
|
struct tm* localtime_r(const time_t* t, struct tm* r);
|
|
|
|
#endif
|