starts-ends with

This commit is contained in:
altalk23 2022-03-28 11:56:25 +03:00
parent d9faa362a1
commit bc02ae1541
2 changed files with 6 additions and 4 deletions

2
bin

@ -1 +1 @@
Subproject commit cc431be56bd67c857fd0574111997ce4a19105b2
Subproject commit 811642290d1b08c9655276ca325c0895f2b06d7d

View file

@ -20,9 +20,6 @@ namespace geode {
*/
GEODE_DLL std::wstring utf8ToWide(std::string const& str);
GEODE_DLL bool endsWith(std::string const& str, std::string const& substr);
GEODE_DLL bool endsWith(std::wstring const& str, std::wstring const& substr);
GEODE_DLL std::string & toLowerIP(std::string & str);
GEODE_DLL std::wstring& toLowerIP(std::wstring& str);
@ -114,6 +111,11 @@ namespace geode {
GEODE_DLL std::wstring& normalizeIP(std::wstring & str);
GEODE_DLL std::string normalize(std::string const& str);
GEODE_DLL std::wstring normalize(std::wstring const& str);
GEODE_DLL bool startsWith(std::string const& str, std::string const& prefix);
GEODE_DLL bool startsWith(std::wstring const& str, std::wstring const& prefix);
GEODE_DLL bool endsWith(std::string const& str, std::string const& suffix);
GEODE_DLL bool endsWith(std::wstring const& str, std::wstring const& suffix);
}
}