2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_H_
|
2022-08-18 22:43:03 +00:00
|
|
|
#include "libc/calls/struct/timespec.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/time/struct/timezone.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
2022-08-13 20:11:56 +00:00
|
|
|
COSMOPOLITAN_C_START_
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
struct timeval {
|
|
|
|
int64_t tv_sec;
|
|
|
|
int64_t tv_usec; /* microseconds */
|
|
|
|
};
|
|
|
|
|
2022-08-13 20:11:56 +00:00
|
|
|
int futimes(int, const struct timeval[2]);
|
|
|
|
int futimesat(int, const char *, const struct timeval[2]);
|
|
|
|
int gettimeofday(struct timeval *, struct timezone *);
|
2022-06-09 03:01:28 +00:00
|
|
|
int lutimes(const char *, const struct timeval[2]);
|
2022-08-13 20:11:56 +00:00
|
|
|
int utimes(const char *, const struct timeval[2]);
|
|
|
|
|
2022-11-06 02:49:41 +00:00
|
|
|
int timeval_cmp(struct timeval, struct timeval) pureconst;
|
2022-11-07 10:22:09 +00:00
|
|
|
struct timeval timeval_frommicros(int64_t) pureconst;
|
|
|
|
struct timeval timeval_frommillis(int64_t) pureconst;
|
2022-11-06 02:49:41 +00:00
|
|
|
struct timeval timeval_add(struct timeval, struct timeval) pureconst;
|
|
|
|
struct timeval timeval_sub(struct timeval, struct timeval) pureconst;
|
|
|
|
struct timeval timespec_totimeval(struct timespec) pureconst;
|
|
|
|
struct timespec timeval_totimespec(struct timeval) pureconst;
|
2022-06-09 03:01:28 +00:00
|
|
|
|
2022-08-13 20:11:56 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
2020-06-15 14:18:57 +00:00
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_H_ */
|