From bbcb3d9d212bfabfd71a66f1749910be80ed5d9e Mon Sep 17 00:00:00 2001 From: Henrik Stickann <4376396-Mithradir@users.noreply.gitlab.com> Date: Wed, 27 Apr 2022 18:34:23 +0200 Subject: [PATCH] Add time function signatures --- include/sta/time.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/sta/time.hpp diff --git a/include/sta/time.hpp b/include/sta/time.hpp new file mode 100644 index 0000000..bedab29 --- /dev/null +++ b/include/sta/time.hpp @@ -0,0 +1,14 @@ +#ifndef STA_TIME_HPP +#define STA_TIME_HPP + +#include + + +namespace sta +{ + using TimeMsFn = uint32_t (*)(); + using TimeUsFn = uint32_t (*)(); +} // namespace sta + + +#endif // STA_TIME_HPP