mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-15 20:24:08 +00:00
Implemented faststrcmp, faststricmp, strcasecmp
This commit is contained in:
parent
c075b863d2
commit
c202fc3b55
19 changed files with 101 additions and 53 deletions
|
@ -116,7 +116,7 @@ typedef struct provider_stuff
|
|||
|
||||
static int __cdecl comp(const provider_stuff*s1,const provider_stuff*s2)
|
||||
{
|
||||
return( _stricmp(s1->name,s2->name) );
|
||||
return(strcasecmp(s1->name, s2->name));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue