![]() |
![]()
| ![]() |
![]()
NAMEJAM_Crc32 - Calculate CRC32 on a block of dataSYNOPSIS#include <jamlib/jam.h> ulong JAM_Crc32(uchar* Buffer_PC, ulong Length_I); DESCRIPTIONCalculates the Crc32 value for a block of data. All ASCII characters are converted to lowercase before calculating the CRC (the input data is unchanged).Arguments
RETURN VALUEThe Crc32 valueEXAMPLESulong Crc_I; uchar Text_AC[32]; strcpy(Text_AC, "Hello world!\n"); Crc_I = JAM_Crc32(Text_AC, strlen(Text_AC)); AUTHORThis manual page was created by Sir Raorn <raorn@altlinux.ru>, based on original JAMlib documentation by Bjorn Stenberg <bjorn@haxx.nu> and Johan Billing <billing@df.lth.se>.SEE ALSOjamlib(3)
|