Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
12
Task/CRC-32/Component-Pascal/crc-32.pas
Normal file
12
Task/CRC-32/Component-Pascal/crc-32.pas
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
MODULE BbtComputeCRC32;
|
||||
IMPORT ZlibCrc32,StdLog;
|
||||
|
||||
PROCEDURE Do*;
|
||||
VAR
|
||||
s: ARRAY 128 OF SHORTCHAR;
|
||||
BEGIN
|
||||
s := "The quick brown fox jumps over the lazy dog";
|
||||
StdLog.IntForm(ZlibCrc32.CRC32(0,s,0,LEN(s$)),16,12,'0',TRUE);
|
||||
StdLog.Ln;
|
||||
END Do;
|
||||
END BbtComputeCRC32.
|
||||
Loading…
Add table
Add a link
Reference in a new issue