mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-26 09:02:21 +00:00
17 lines
256 B
C
17 lines
256 B
C
#ifndef UTIL_TIME_H
|
|
#define UTIL_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
/**
|
|
* Get the current time, in milliseconds.
|
|
*/
|
|
uint32_t get_current_time_msec(void);
|
|
|
|
/**
|
|
* Convert a timespec to milliseconds.
|
|
*/
|
|
int64_t timespec_to_msec(const struct timespec *a);
|
|
|
|
#endif
|