mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
Changed wildcare handling (Carl Nettelblad)
svn path=/trunk/; revision=1654
This commit is contained in:
parent
a2329a46e9
commit
574a1b82f4
1 changed files with 17 additions and 10 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: string.c,v 1.4 2000/12/29 23:17:12 dwelch Exp $
|
/* $Id: string.c,v 1.5 2001/03/01 13:46:22 dwelch Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -151,23 +151,30 @@ BOOLEAN wstrcmpi(PWSTR s1, PWSTR s2)
|
||||||
|
|
||||||
BOOLEAN wstrcmpjoki(PWSTR s1, PWSTR s2)
|
BOOLEAN wstrcmpjoki(PWSTR s1, PWSTR s2)
|
||||||
/*
|
/*
|
||||||
* FUNCTION: Compare to wide character strings, s2 with jokers (* or ?)
|
* FUNCTION: Compare two wide character strings, s2 with jokers (* or ?)
|
||||||
* return TRUE if s1 like s2
|
* return TRUE if s1 like s2
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
while ((*s2=='?')||(towlower(*s1)==towlower(*s2)))
|
while ((*s2=='*')||(*s2=='?')||(towlower(*s1)==towlower(*s2)))
|
||||||
{
|
{
|
||||||
if ((*s1)==0 && (*s2)==0)
|
if ((*s1)==0 && (*s2)==0)
|
||||||
return(TRUE);
|
return(TRUE);
|
||||||
s1++;
|
if(*s2=='*')
|
||||||
s2++;
|
{
|
||||||
|
s2++;
|
||||||
|
while (*s1)
|
||||||
|
if (wstrcmpjoki(s1,s2)) return TRUE;
|
||||||
|
else s1++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
s1++;
|
||||||
|
s2++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if(*s2=='*')
|
if ((*s2)=='.')
|
||||||
{
|
{
|
||||||
s2++;
|
for (;((*s2)=='.')||((*s2)=='*')||((*s2)=='?');s2++) {}
|
||||||
while (*s1)
|
|
||||||
if (wstrcmpjoki(s1,s2)) return TRUE;
|
|
||||||
else s1++;
|
|
||||||
}
|
}
|
||||||
if ((*s1)==0 && (*s2)==0)
|
if ((*s1)==0 && (*s2)==0)
|
||||||
return(TRUE);
|
return(TRUE);
|
||||||
|
|
Loading…
Reference in a new issue