mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-01 04:59:17 +02:00
* overload for lowercase()
This commit is contained in:
parent
0eb702107e
commit
fe76a352c7
@ -44,7 +44,7 @@ procedure DisposeStr(S: PString);
|
||||
procedure AssignStr(var P: PString; const S: string);
|
||||
procedure AppendStr(var Dest: String; const S: string);
|
||||
function UpperCase(const s: string): string;
|
||||
function LowerCase(const s: string): string;
|
||||
function LowerCase(const s: string): string; overload;
|
||||
function CompareStr(const S1, S2: string): Integer;
|
||||
function CompareMemRange(P1, P2: Pointer; Length: cardinal): integer;
|
||||
function CompareMem(P1, P2: Pointer; Length: cardinal): Boolean;
|
||||
@ -110,7 +110,10 @@ function BCDToInt(Value: integer): integer;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.10 2002-01-24 12:33:54 jonas
|
||||
Revision 1.11 2002-01-24 18:33:58 peter
|
||||
* overload for lowercase()
|
||||
|
||||
Revision 1.10 2002/01/24 12:33:54 jonas
|
||||
* adapted ranges of native types to int64 (e.g. high cardinal is no
|
||||
longer longint($ffffffff), but just $fffffff in psystem)
|
||||
* small additional fix in 64bit rangecheck code generation for 32 bit
|
||||
|
Loading…
Reference in New Issue
Block a user