URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [or1ksim/] [peripheral/] [crc32.h] - Rev 163
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