Flatten directories

This commit is contained in:
Henrik Stickann
2023-01-19 23:14:39 +01:00
parent b7e24cd5a3
commit 2a5a816c57
7 changed files with 0 additions and 0 deletions

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

@@ -0,0 +1,27 @@
/**
* @brief Signatures for time related functions.
*/
#ifndef STA_TIME_HPP
#define STA_TIME_HPP
#include <cstdint>
namespace sta
{
/**
* @brief Signature for millisecond precision time.
*
* @return Time in milliseconds
*/
using TimeMsFn = uint32_t (*)();
/**
* @brief Signature for microseconds precision time.
*
* @return Time in microseconds
*/
using TimeUsFn = uint32_t (*)();
} // namespace sta
#endif // STA_TIME_HPP