eive-obsw/linux/utility/utility.h
Robin Mueller 4a6840f098
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
bugfixes and improvements
- Tests finished
2022-04-08 11:22:16 +02:00

17 lines
305 B
C++

#ifndef LINUX_UTILITY_UTILITY_H_
#define LINUX_UTILITY_UTILITY_H_
#include <string>
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
namespace utility {
void handleSystemError(int retcode, std::string function);
bool timeSanityCheck();
} // namespace utility
#endif /* LINUX_UTILITY_UTILITY_H_ */