/*! * @file helper_functions.h * @brief Definition of some minor helper-functions */ #ifndef _HELPER_FUNCTIONS_H #define _HELPER_FUNCTIONS_H // FORWARD DECLARATION /*********************** *** HELPER FUNCTIONS *** ***********************/ bool isBool(const char* BOOL, bool defaultValue); int isInt(const char* INT, int defaultValue); float isFloat(const char* FLOAT, float defaultValue); const char* isString(const char* STRING, const char* defaultValue); #endif /* _HELPER_FUNCTIONS_H */