| 11 | #include "AresHelper.h" |
| 12 | |
| 13 | bool GeneralUtils::IsValidString(const char* str) |
| 14 | { |
| 15 | return str != nullptr |
| 16 | && strlen(str) != 0 |
| 17 | && !INIClass::IsBlank(str); |
| 18 | } |
| 19 | |
| 20 | void GeneralUtils::IntValidCheck(int* source, const char* section, const char* tag, int defaultValue, int min, int max) |
| 21 | { |
nothing calls this directly
no outgoing calls
no test coverage detected