Robin Mueller
4a6840f098
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
- Tests finished
17 lines
305 B
C++
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_ */
|