Changeset 9fc72fb3 in mainline for uspace/lib/ext4/libext4_crc.c
- Timestamp:
- 2012-05-03T17:32:06Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2226cc3
- Parents:
- e40ece98
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_crc.c
re40ece98 r9fc72fb3 39 39 #include "libext4.h" 40 40 41 /** CRC table for the CRC-16. The poly is 0x8005 (x^16 + x^15 + x^2 + 1) */ 41 /** CRC table for the CRC-16. 42 * 43 * The poly is 0x8005 (x^16 + x^15 + x^2 + 1). 44 * 45 */ 42 46 uint16_t const crc16_table[256] = { 43 47 0x0000, 0xC0C1, 0xC181, 0x0140, 0xC301, 0x03C0, 0x0280, 0xC241,
Note:
See TracChangeset
for help on using the changeset viewer.