scorpioengine/src/string_functions.h

30 lines
484 B
C++

#ifndef headerfile_libscorpiohttpserver_src_string_functions_h
#define headerfile_libscorpiohttpserver_src_string_functions_h
#include <string>
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