#include <sys/types.h>
#include <stdio.h>
#include "crc32.h"
Go to the source code of this file.
Defines | |
#define | _CRC32_(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff]) |
Functions | |
unsigned int | crc32_sz (char *buf, int size) |
Variables | |
static const unsigned int | crc32tab [256] |
#define _CRC32_ | ( | crc, | ||
ch | ||||
) | (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff]) |
Definition at line 19 of file crc32.c.
Referenced by crc32_sz().
unsigned int crc32_sz | ( | char * | buf, | |
int | size | |||
) |
Definition at line 94 of file crc32.c.
References _CRC32_.
Referenced by ghstore_compress(), and ghstore_consistent().