mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
12 lines
222 B
C
12 lines
222 B
C
#include <time.h>
|
|
clock_t get_clock() {
|
|
return clock();
|
|
}
|
|
|
|
int sizeof_clock() {
|
|
return sizeof(clock_t);
|
|
}
|
|
|
|
double get_offset(clock_t before, clock_t after) {
|
|
return (double)(after - before) / CLOCKS_PER_SEC;
|
|
}
|