Sync
This commit is contained in:
parent
6f050a029e
commit
776bba907c
3887 changed files with 59894 additions and 7280 deletions
12
Task/CRC-32/Component-Pascal/crc-32.component
Normal file
12
Task/CRC-32/Component-Pascal/crc-32.component
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