mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-14 14:24:09 +00:00
most of animation system done; little stuff here and there
This commit is contained in:
parent
78ca912434
commit
2eee4c5176
27 changed files with 497 additions and 229 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue