prime/include/Kyoto/rstl/StringExtras.hpp

13 lines
290 B
C++
Raw Normal View History

#ifndef _STRINGEXTRAS
#define _STRINGEXTRAS
#include "rstl/string.hpp"
class CStringExtras {
public:
static bool CompareCaseInsensitive(const rstl::string&, const rstl::string&);
static int IndexOfSubstring(const rstl::string&, const rstl::string&);
};
#endif // _STRINGEXTRAS