lib/misc/crc32.h
changeset 2 b3afb9f1e801
parent 0 6f7a81934006
equal deleted inserted replaced
1:30113bfbe723 2:b3afb9f1e801
    43 #else
    43 #else
    44 #define crc32_update(crc32,octet) ( crc32 = crc32tab[(unsigned char)(crc32) ^ \
    44 #define crc32_update(crc32,octet) ( crc32 = crc32tab[(unsigned char)(crc32) ^ \
    45         (unsigned char)(octet) ] ^ ( ((crc32)>>8) & 0x00FFFFFFL ) )
    45         (unsigned char)(octet) ] ^ ( ((crc32)>>8) & 0x00FFFFFFL ) )
    46 #endif
    46 #endif
    47 
    47 
    48 #endif CRC32INIT
    48 #endif