Changeset 443 for libmpc/trunk/common/crc32.c
- Timestamp:
- 06/24/09 23:22:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/common/crc32.c
r135 r443 51 51 52 52 /* Return the CRC of the bytes buf[0..len-1]. */ 53 unsigned long crc32(unsigned char *buf, int len)53 unsigned long mpc_crc32(unsigned char *buf, int len) 54 54 { 55 55 return update_crc(0xffffffffL, buf, len) ^ 0xffffffffL;
Note: See TracChangeset
for help on using the changeset viewer.