diff options
author | Sergeanur <s.anureev@yandex.ua> | 2019-10-30 00:12:58 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2019-10-30 00:35:31 +0100 |
commit | c202fc3b550b8fc569f510e2002241eec399c18d (patch) | |
tree | e3d267990b344709533c925a4169cd71dfaa8394 /src/core/common.h | |
parent | CRadar::Initialise() + fixes (diff) | |
download | re3-c202fc3b550b8fc569f510e2002241eec399c18d.tar re3-c202fc3b550b8fc569f510e2002241eec399c18d.tar.gz re3-c202fc3b550b8fc569f510e2002241eec399c18d.tar.bz2 re3-c202fc3b550b8fc569f510e2002241eec399c18d.tar.lz re3-c202fc3b550b8fc569f510e2002241eec399c18d.tar.xz re3-c202fc3b550b8fc569f510e2002241eec399c18d.tar.zst re3-c202fc3b550b8fc569f510e2002241eec399c18d.zip |
Diffstat (limited to 'src/core/common.h')
-rw-r--r-- | src/core/common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/common.h b/src/core/common.h index fd5f35b0..cadcac1d 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -153,6 +153,10 @@ public: #endif }; +#if (defined(_MSC_VER)) +extern int strcasecmp(const char *str1, const char *str2); +#endif + #define clamp(v, low, high) ((v)<(low) ? (low) : (v)>(high) ? (high) : (v)) inline float sq(float x) { return x*x; } |