Add time function signatures

This commit is contained in:
Henrik Stickann 2022-04-27 18:34:23 +02:00
parent cfbf6f4ce2
commit bbcb3d9d21

14
include/sta/time.hpp Normal file
View File

@ -0,0 +1,14 @@
#ifndef STA_TIME_HPP
#define STA_TIME_HPP
#include <cstdint>
namespace sta
{
using TimeMsFn = uint32_t (*)();
using TimeUsFn = uint32_t (*)();
} // namespace sta
#endif // STA_TIME_HPP