mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 14:59:27 +01:00
* fixed previous commit
git-svn-id: trunk@1050 -
This commit is contained in:
parent
629fc8fe64
commit
63ed93fc24
@ -57,7 +57,7 @@ var
|
||||
function towlower(__wc:wint_t):wint_t;cdecl;external libiconvname name 'towlower';
|
||||
function towupper(__wc:wint_t):wint_t;cdecl;external libiconvname name 'towupper';
|
||||
function wcscoll (__s1:pwchar_t; __s2:pwchar_t):cint;cdecl;external libiconvname name 'wcscoll';
|
||||
function strcoll (__s1:pchar_t; __s2:pchar_t):cint;cdecl;external libiconvname name 'strcoll';
|
||||
function strcoll (__s1:pchar; __s2:pchar):cint;cdecl;external libiconvname name 'strcoll';
|
||||
|
||||
const
|
||||
{$ifdef linux}
|
||||
@ -229,7 +229,7 @@ function CompareTextWideString(const s1, s2 : WideString): PtrInt;
|
||||
end;
|
||||
|
||||
|
||||
function StrCompAnsi(s1,s2 : AnsiString): PtrInt;
|
||||
function StrCompAnsi(s1,s2 : PChar): PtrInt;
|
||||
begin
|
||||
result:=strcoll(s1,s2);
|
||||
end;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user