mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
convert strings to lower case in CharLowerA.
fixes loading of plugins in FAR. svn path=/trunk/; revision=20013
This commit is contained in:
parent
e01c928700
commit
2d6db118c9
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ WINAPI
|
||||||
CharLowerA(LPSTR x)
|
CharLowerA(LPSTR x)
|
||||||
{
|
{
|
||||||
if (!HIWORD(x)) return (LPSTR)tolower((char)(int)x);
|
if (!HIWORD(x)) return (LPSTR)tolower((char)(int)x);
|
||||||
|
CharLowerBuffA(x, strlen(x));
|
||||||
/*
|
/*
|
||||||
__TRY
|
__TRY
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue