blob: e40484d303d9430d5a330631c7de7b48f38e51e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <Havok/Common/Base/Types/hkBaseDefs.h>
#include <Havok/Common/Base/Types/hkBaseTypes.h>
namespace hkString {
int strCmp(const char* s1, const char* s2);
hkBool beginsWith(const char* str, const char* prefix);
hkBool endsWith(const char* str, const char* suffix);
} // namespace hkString
|