GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_time_stamp.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2009-2022 Cyril Hrubis <metan@ucw.cz>
4 */
5
6/*
7
8 Returns monotonously incrementing timestamps in milliseconds.
9
10 */
11
12#ifndef INPUT_GP_TIME_STAMP_H
13#define INPUT_GP_TIME_STAMP_H
14
15#include <stdint.h>
16
17uint64_t gp_time_stamp(void);
18
19#endif /* INPUT_GP_TIME_STAMP_H */