mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 02:19:27 +02:00
* fixed AnsiStrLower/AnsiStrUpper (were exchanged)
git-svn-id: trunk@9441 -
This commit is contained in:
parent
60ccf03a0b
commit
19985965e6
@ -669,7 +669,7 @@ function AnsiStrLower(Str: PChar): PChar;
|
|||||||
var
|
var
|
||||||
temp: ansistring;
|
temp: ansistring;
|
||||||
begin
|
begin
|
||||||
temp:=upperansistring(str);
|
temp:=loweransistring(str);
|
||||||
ansi2pchar(temp,str,result);
|
ansi2pchar(temp,str,result);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -678,7 +678,7 @@ function AnsiStrUpper(Str: PChar): PChar;
|
|||||||
var
|
var
|
||||||
temp: ansistring;
|
temp: ansistring;
|
||||||
begin
|
begin
|
||||||
temp:=loweransistring(str);
|
temp:=upperansistring(str);
|
||||||
ansi2pchar(temp,str,result);
|
ansi2pchar(temp,str,result);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user