Working on switching to std::string.

This commit is contained in:
Ben Vanik
2014-08-16 02:30:23 -07:00
parent 01f0b14250
commit a4dfc23abc
34 changed files with 211 additions and 250 deletions

View File

@@ -12,13 +12,21 @@
#include <string>
#include <poly/config.h>
#include <poly/platform.h>
#if XE_LIKE_WIN32
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
#endif // XE_LIKE_WIN32
namespace poly {
std::string to_string(const std::wstring& source);
std::wstring to_wstring(const std::string& source);
std::string::size_type find_first_of_case(const std::string& target,
const std::string& search);
} // namespace poly
#endif // POLY_STRING_H_