]> Git Repo - J-u-boot.git/blame - fs/ext4/crc16.h
kbuild: use Linux Kernel build scripts
[J-u-boot.git] / fs / ext4 / crc16.h
CommitLineData
ed34f34d
US
1/*
2 * crc16.h - CRC-16 routine
3 * Implements the standard CRC-16:
4 * Width 16
5 * Poly 0x8005 (x16 + x15 + x2 + 1)
6 * Init 0
7 *
8 * Copyright (c) 2005 Ben Gardner <[email protected]>
9 * This source code is licensed under the GNU General Public License,
10 * Version 2. See the file COPYING for more details.
11 */
12#ifndef __CRC16_H
13#define __CRC16_H
14extern unsigned int ext2fs_crc16(unsigned int crc,
15 const void *buffer, unsigned int len);
16#endif
This page took 0.196909 seconds and 4 git commands to generate.