mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
50 lines
2 KiB
C
50 lines
2 KiB
C
|
/* zlib.h -- interface of the libz general purpose compression library
|
||
|
version 1.2.8, August 12th, 2014
|
||
|
|
||
|
Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
||
|
|
||
|
This software is provided 'as-is', without any express or implied
|
||
|
warranty. In no event will the authors be held liable for any damages
|
||
|
arising from the use of this software.
|
||
|
|
||
|
Permission is granted to anyone to use this software for any purpose,
|
||
|
including commercial applications, and to alter it and redistribute it
|
||
|
freely, subject to the following restrictions:
|
||
|
|
||
|
1. The origin of this software must not be misrepresented; you must not
|
||
|
claim that you wrote the original software. If you use this software
|
||
|
in a product, an acknowledgment in the product documentation would be
|
||
|
appreciated but is not required.
|
||
|
2. Altered source versions must be plainly marked as such, and must not be
|
||
|
misrepresented as being the original software.
|
||
|
3. This notice may not be removed or altered from any source distribution.
|
||
|
|
||
|
Jean-loup Gailly Mark Adler
|
||
|
jloup@gzip.org madler@alumni.caltech.edu
|
||
|
*/
|
||
|
|
||
|
/* zcrc32.h -- compute the CRC-32 of a data stream
|
||
|
* Copyright (C) 1995-2006, 2010, 2011, 2012 Mark Adler
|
||
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
||
|
*
|
||
|
* Thanks to Rodney Brown <rbrown64@csc.com.au> for his contribution of faster
|
||
|
* CRC methods: exclusive-oring 32 bits of data at a time, and pre-computing
|
||
|
* tables for updating the shift register in one step with three exclusive-ors
|
||
|
* instead of four steps with four exclusive-ors. This results in about a
|
||
|
* factor of two increase in speed on a Power PC G4 (PPC7455) using gcc -O3.
|
||
|
*/
|
||
|
|
||
|
/* @(#) $Id$ */
|
||
|
|
||
|
// TODO: Remove this file and this feature after releasing Sortix 1.0. Change
|
||
|
// the checksum algorithm in the initrd header to say none.
|
||
|
|
||
|
#ifndef ZCRC32_H
|
||
|
#define ZCRC32_H
|
||
|
|
||
|
unsigned long crc32(unsigned long crc,
|
||
|
const unsigned char *buf,
|
||
|
unsigned int len);
|
||
|
|
||
|
#endif
|