diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-05-08 16:06:25 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-05-08 16:06:25 +0200 |
commit | 756e4dd068e27b25c651e85781871295131b7ada (patch) | |
tree | f2975fd92f2bf57b07f924ff244b5a9ffd6cd4b2 /src/core/common.h | |
parent | fix (diff) | |
parent | most of animation system done; little stuff here and there (diff) | |
download | re3-756e4dd068e27b25c651e85781871295131b7ada.tar re3-756e4dd068e27b25c651e85781871295131b7ada.tar.gz re3-756e4dd068e27b25c651e85781871295131b7ada.tar.bz2 re3-756e4dd068e27b25c651e85781871295131b7ada.tar.lz re3-756e4dd068e27b25c651e85781871295131b7ada.tar.xz re3-756e4dd068e27b25c651e85781871295131b7ada.tar.zst re3-756e4dd068e27b25c651e85781871295131b7ada.zip |
Diffstat (limited to 'src/core/common.h')
-rw-r--r-- | src/core/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/common.h b/src/core/common.h index ff8580a1..8f400a46 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -187,6 +187,7 @@ public: #if (defined(_MSC_VER)) extern int strcasecmp(const char *str1, const char *str2); +extern int strncasecmp(const char *str1, const char *str2, size_t len); #endif #define clamp(v, low, high) ((v)<(low) ? (low) : (v)>(high) ? (high) : (v)) |