mirror of https://github.com/PrimeDecomp/prime.git
13 lines
290 B
C++
13 lines
290 B
C++
|
#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
|