mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-13 21:13:30 +00:00
13 lines
289 B
C++
13 lines
289 B
C++
#ifndef _STRINGEXTRAS
|
|
#define _STRINGEXTRAS
|
|
|
|
#include "rstl/string.hpp"
|
|
|
|
class CStringExtras {
|
|
public:
|
|
static int CompareCaseInsensitive(const rstl::string&, const rstl::string&);
|
|
static int IndexOfSubstring(const rstl::string&, const rstl::string&);
|
|
};
|
|
|
|
#endif // _STRINGEXTRAS
|