Mercurial > minori
view include/core/time.h @ 30:4dc59e1a81a3
ci/win32: fix echo-ing to binfmt
ok, so apparently bash AUTOMATICALLY writes a newline to the end of
a file. why does it do this? nobody knows, but we can avoid it by
simply adding the `-n` flag
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 20 Sep 2023 00:53:11 -0400 |
parents | 5c0397762b53 |
children | 2743011a6042 |
line wrap: on
line source
#ifndef __core__time_h #define __core__time_h #include <cstdint> #include <string> namespace Time { class Duration { public: Duration(int64_t l); int64_t InSeconds(); int64_t InMinutes(); int64_t InHours(); int64_t InDays(); std::string AsRelativeString(); private: int64_t length; }; int64_t GetSystemTime(); }; // namespace Time #endif // __core__time_h