This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-certstore/common/rt/include/rt_time.h
fengweihao 7192f437e5 * 修改编译方式为CMake
* 删除C++适配代码
* 修改编译告警
2019-11-05 11:38:40 +08:00

13 lines
327 B
C

#ifndef __RT_TM_H__
#define __RT_TM_H__
struct tm *rt_localtime(time_t timep, struct tm *result);
int rt_tms2str(uint64_t ts, const char *tm_form, char *date, size_t len);
int rt_curr_tms2str(const char *tm_form, char *date, size_t len);
u_int64_t rt_time_s(void);
u_int64_t rt_time_ms(void);
u_int64_t rt_time_ns();
#endif