chiark / gitweb /
New array adjustment macros for unsigned arguments.
[mLib] / crc32.h
CommitLineData
0875b58f 1/* -*-c-*-
2 *
7b4b46a7 3 * $Id: crc32.h,v 1.4 1999/06/01 09:47:22 mdw Exp $
0875b58f 4 *
5 * Calculating cyclic redundancy values (non-cryptographic!)
6 *
7 * (c) 1998 Straylight/Edgeware
8 */
9
c846879c 10/*----- Licensing notice --------------------------------------------------*
0875b58f 11 *
12 * This file is part of the mLib utilities library.
13 *
14 * mLib is free software; you can redistribute it and/or modify
c846879c 15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
0875b58f 19 * mLib is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c846879c 22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
0bd98442 25 * License along with mLib; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
0875b58f 28 */
29
30/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: crc32.h,v $
7b4b46a7 33 * Revision 1.4 1999/06/01 09:47:22 mdw
34 * Make the return type of `crc32' a `uint32' now that we have `bits.h'.
35 *
0bd98442 36 * Revision 1.3 1999/05/06 19:51:35 mdw
37 * Reformatted the LGPL notice a little bit.
38 *
c846879c 39 * Revision 1.2 1999/05/05 18:50:31 mdw
40 * Change licensing conditions to LGPL.
41 *
42 * Revision 1.1.1.1 1998/06/17 23:44:42 mdw
43 * Initial version of mLib
0875b58f 44 *
45 */
46
47#ifndef CRC32_H
48#define CRC32_h
49
50#ifdef __cplusplus
51 extern "C" {
52#endif
53
7b4b46a7 54/*----- Header files ------------------------------------------------------*/
55
56#ifndef BITS_H
57# include "bits.h"
58#endif
59
0875b58f 60/*----- External values ---------------------------------------------------*/
61
7b4b46a7 62extern uint32 crc32_table[256];
0875b58f 63
64/*----- Macros ------------------------------------------------------------*/
65
66/* --- @CRC32@ --- *
67 *
7b4b46a7 68 * Arguments: @uint32 result@ = where to put the result
69 * @uint32 crc@ = carryover from previous call, or zero
0875b58f 70 * @void *buf@ = pointer to buffer to check
71 * @size_t sz@ = size of the buffer
72 *
73 * Use: A restartable CRC calculator wrapped up in a macro.
74 */
75
76#define CRC32(result, crc, buf, sz) do { \
7b4b46a7 77 const octet *_p = (const octet *)(buf); \
78 const octet *_l = _p + (sz); \
79 uint32 _crc = U32(~(crc)); \
0875b58f 80 \
81 while (_p < _l) \
7b4b46a7 82 _crc = (_crc >> 8) ^ crc32_table[U8(*_p++ ^ _crc)]; \
83 (result) = U32(~_crc); \
0875b58f 84} while (0)
85
86/*----- Functions provided ------------------------------------------------*/
87
88/* --- @crc32@ --- *
89 *
7b4b46a7 90 * Arguments: @uint32 crc@ = carryover from previous call, or zero
0875b58f 91 * @const void *buf@ = pointer to buffer to check
92 * @size_t sz@ = size of the buffer
93 *
94 * Returns: The CRC updated by the new buffer.
95 *
96 * Use: A restartable CRC calculator. This is just a function
97 * wrapper for the macro version.
98 */
99
7b4b46a7 100extern uint32 crc32(uint32 /*crc*/, const void */*buf*/, size_t /*sz*/);
0875b58f 101
102/*----- That's all, folks -------------------------------------------------*/
103
104#ifdef __cplusplus
105 }
106#endif
107
108#endif