Implemented faststrcmp, faststricmp, strcasecmp

This commit is contained in:
Sergeanur 2019-10-30 01:12:58 +02:00
parent c075b863d2
commit c202fc3b55
19 changed files with 101 additions and 53 deletions

View file

@ -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