2021-07-09 16:57:34 +02:00
|
|
|
#ifndef LINUX_UTILITY_UTILITY_H_
|
|
|
|
#define LINUX_UTILITY_UTILITY_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2022-08-24 17:27:47 +02:00
|
|
|
#include "fsfw/returnvalues/returnvalue.h"
|
2022-01-17 15:58:27 +01:00
|
|
|
|
2021-07-09 16:57:34 +02:00
|
|
|
namespace utility {
|
|
|
|
|
|
|
|
void handleSystemError(int retcode, std::string function);
|
|
|
|
|
2022-04-08 11:22:16 +02:00
|
|
|
bool timeSanityCheck();
|
|
|
|
|
|
|
|
} // namespace utility
|
2021-07-09 16:57:34 +02:00
|
|
|
|
|
|
|
#endif /* LINUX_UTILITY_UTILITY_H_ */
|