mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
dc6f57f19c
This only has second accuracy right now, I'll work out subseconds later.
13 lines
107 B
C++
13 lines
107 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace RTC {
|
|
|
|
void initialize();
|
|
time_t now();
|
|
time_t bootTime();
|
|
|
|
}
|
|
|