crc32 — Computes a running Cyclic Redundancy Check checksum.
The crc32() function shall return the new checksum value.
The crc32() function shall compute a running Cyclic Redundancy Check checksum. On entry, crc is the previous value for the checksum, and buf shall point to an array of len bytes of data to be added to this checksum. The crc32() function shall return the new checksum.
If buf is NULL
(or Z_NULL
), crc32()
shall return the initial checksum.
To compute a running Cyclic Redundancy Check checksum for "1234":
#include <stdio.h> void Crc( ) { |
Output
crc checksum is 9be3e0a3. |
None defined.
For additional information or queries on this page send feedback
© 2007-2009 Nokia Corporation. All rights reserved. This documentation can be used in the connection with this Product to help and support the user. |
|