Changeset 9fc72fb3 in mainline for uspace/lib/ext4/libext4_crc.c


Ignore:
Timestamp:
2012-05-03T17:32:06Z (12 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2226cc3
Parents:
e40ece98
Message:

added TODOs for comments and first part of superblock comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_crc.c

    re40ece98 r9fc72fb3  
    3939#include "libext4.h"
    4040
    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 */
    4246uint16_t const crc16_table[256] = {
    4347                0x0000, 0xC0C1, 0xC181, 0x0140, 0xC301, 0x03C0, 0x0280, 0xC241,
Note: See TracChangeset for help on using the changeset viewer.