#ifndef headerfile_libscorpiohttpserver_src_string_functions_h #define headerfile_libscorpiohttpserver_src_string_functions_h #include wchar_t ToLower(wchar_t c); bool CompareNoCase(const wchar_t * str1, const wchar_t * str2); bool CompareNoCase(const std::wstring & str1, const wchar_t * str2); bool IsDecDigit(wchar_t c); bool IsHexDigit(wchar_t c); int HexDigitToValue(wchar_t c); bool IsWhite(wchar_t c); void TrimWhiteAtEnd(std::wstring & str); #endif