|
FastCRC Library |
API |
|
SL_FCRC16_Update
void SL_FCRCCALL SL_FCRC16_Update( unsigned long*
pCRC, const void* pSrc, unsigned int
nSrcLength );
Parameters
pCRC
[in/out] Pointer to the
crc variable.
pSrc
[in] Pointer to the
continuous memory block with which to update the
crc variable.
nSrcLength
[in] Length in bytes
of the memory block.
Remarks
Updates the
crc variable
pointed by pCRC with the memory block
pointed by pSrc. Call this function for each continuous memory
block of the data for which the checksum is calculated. To retrieve the checksum after using
SL_FCRC16_Update, call SL_FCRC16_Final.
Example
See the example for
SL_FCRC16_Final.
CRC16 API Overview
| CRC16 API Functions
|
Useful Links | HashCalc
See Also
SL_FCRC16_UpdateStr,
SL_FCRC16_Final,
SL_FCRC16_Init
|