mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-08 09:16:02 +02:00
29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
{%MainUnit sysutils.pp}
|
|
{
|
|
*********************************************************************
|
|
Copyright (C) 2002 by Florian Klaempfl
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
function AnsiCompareFileName(const S1, S2 : string) : SizeInt;
|
|
Function SameFileName(const S1, S2: string): Boolean;
|
|
function AnsiLowerCaseFileName(const s : string) : string;
|
|
function AnsiUpperCaseFileName(const s : string) : string;
|
|
function AnsiPos(const substr,s : string) : SizeInt;
|
|
function AnsiStrPos(str,substr : PAnsiChar) : PAnsiChar;
|
|
function AnsiStrRScan(Str : PAnsiChar;Chr : AnsiChar) : PAnsiChar;
|
|
function AnsiStrScan(Str : PAnsiChar;Chr: AnsiChar) : PAnsiChar;
|
|
function HashName(Name: PAnsiChar): LongWord;
|
|
|
|
function BytesOf(const Val: RawByteString): TBytes;
|
|
function BytesOf(const Val: AnsiChar): TBytes;
|
|
|
|
Function CharInSet(Ch: AnsiChar;Const CSet : TSysCharSet) : Boolean; inline;
|