2023-01-08 14:29:30 +00:00
|
|
|
/* time.h: Time management. */
|
2023-01-07 10:21:53 +00:00
|
|
|
|
2023-01-06 16:35:07 +00:00
|
|
|
#ifndef _TIME_H
|
|
|
|
#define _TIME_H
|
|
|
|
|
2023-01-06 23:21:08 +00:00
|
|
|
#include <bits/clockid.h>
|
2023-01-13 20:06:27 +00:00
|
|
|
#include <bits/struct_tm.h>
|
2023-01-06 23:21:08 +00:00
|
|
|
#include <bits/timespec.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Get the current value of a system clock. */
|
|
|
|
int clock_gettime(clockid_t id, struct timespec* ts);
|
|
|
|
|
2023-01-06 23:27:23 +00:00
|
|
|
/* Get the current wall clock time. */
|
|
|
|
time_t time(time_t* tp);
|
|
|
|
|
2023-01-13 20:06:27 +00:00
|
|
|
/* Get the broken-down time representation of UNIX time, in local time. */
|
|
|
|
struct tm* localtime(const time_t* tp);
|
|
|
|
|
|
|
|
/* Get the broken-down time representation of UNIX time, in local time. */
|
|
|
|
struct tm* localtime_r(const time_t* tp, struct tm* out);
|
|
|
|
|
|
|
|
/* Get the broken-down time representation of UNIX time, in UTC time. */
|
|
|
|
struct tm* gmtime(const time_t* tp);
|
|
|
|
|
|
|
|
/* Get the broken-down time representation of UNIX time, in UTC time. */
|
|
|
|
struct tm* gmtime_r(const time_t* tp, struct tm* out);
|
|
|
|
|
|
|
|
/* Build a string representation of broken-down time. */
|
|
|
|
char* asctime(const struct tm* tm);
|
|
|
|
|
|
|
|
/* Build a string representation of broken-down time. */
|
|
|
|
char* asctime_r(const struct tm* tm, char buf[26]);
|
|
|
|
|
|
|
|
/* Build a string representation of UNIX time. */
|
|
|
|
char* ctime(const time_t* tp);
|
|
|
|
|
|
|
|
/* Build a string representation of UNIX time. */
|
|
|
|
char* ctime_r(const time_t* tp, char buf[26]);
|
|
|
|
|
2023-01-06 23:21:08 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-01-06 16:35:07 +00:00
|
|
|
#endif
|