mirror of
https://github.com/halpz/re3.git
synced 2025-06-30 04:26:20 +00:00
most of animation system done; little stuff here and there
This commit is contained in:
@ -1678,5 +1678,9 @@ int strcasecmp(const char* str1, const char* str2)
|
||||
{
|
||||
return _strcmpi(str1, str2);
|
||||
}
|
||||
int strncasecmp(const char *str1, const char *str2, size_t len)
|
||||
{
|
||||
return _strnicmp(str1, str2, len);
|
||||
}
|
||||
#endif
|
||||
#endif
|
@ -3150,5 +3150,9 @@ int strcasecmp(const char *str1, const char *str2)
|
||||
{
|
||||
return _strcmpi(str1, str2);
|
||||
}
|
||||
int strncasecmp(const char *str1, const char *str2, size_t len)
|
||||
{
|
||||
return _strnicmp(str1, str2, len);
|
||||
}
|
||||
#endif
|
||||
#endif
|
Reference in New Issue
Block a user