mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
18 lines
379 B
ObjectPascal
18 lines
379 B
ObjectPascal
{ %fail }
|
|
{ Source provided for Free Pascal Bug Report 3047 }
|
|
{ Submitted by "GBD" on 2004-04-12 }
|
|
{ e-mail: }
|
|
{$mode delphi}
|
|
|
|
function JenkinsHashBuffer(const buffer; length : Integer; initVal : Integer) : longword;
|
|
begin
|
|
end;
|
|
|
|
function JenkinsHashString(const s : String) : longword;
|
|
begin
|
|
result := JenkinsHashBuffer(PChar(s), Length(s), 0)
|
|
end;
|
|
|
|
begin
|
|
end.
|