URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [stable_0_2_x/] [or1ksim/] [peripheral/] [crc32.h] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef __CRC32_H #define __CRC32_H /* Calculate CRC of buffer in one go */ unsigned long crc32( const void *buf, unsigned len ); /* Calculate incrementally */ void crc32_init( unsigned long *value ); void crc32_feed_bytes( unsigned long *value, const void *buf, unsigned len ); void crc32_close( unsigned long *value ); #endif /* ___CRC32_H */
Go to most recent revision | Compare with Previous | Blame | View Log