Robin Mueller
447c4d5c88
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
17 lines
299 B
C++
17 lines
299 B
C++
#ifndef LINUX_UTILITY_UTILITY_H_
|
|
#define LINUX_UTILITY_UTILITY_H_
|
|
|
|
#include <string>
|
|
|
|
#include "fsfw/returnvalues/returnvalue.h"
|
|
|
|
namespace utility {
|
|
|
|
void handleSystemError(int retcode, std::string function);
|
|
|
|
bool timeSanityCheck();
|
|
|
|
} // namespace utility
|
|
|
|
#endif /* LINUX_UTILITY_UTILITY_H_ */
|