mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 18:42:14 +00:00
[REACTOS] Use the ISO C and C++ conformant names: _wcsicmp, _stricmp
Stop using non-conforming wcsicmp, stricmp, strcasecmp
This commit is contained in:
parent
fb9571ee3c
commit
e4930be4ff
87 changed files with 293 additions and 293 deletions
|
@ -179,7 +179,7 @@ ChanMgrGetChannelByName(IN PWCHAR Name,
|
|||
ASSERT(NT_SUCCESS(Status1));
|
||||
|
||||
/* Check if this is the name that was passed in */
|
||||
Found = wcsicmp(Name, ChannelName);
|
||||
Found = _wcsicmp(Name, ChannelName);
|
||||
SacFreePool(ChannelName);
|
||||
if (Found)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue