view src/lib/crc32.h @ 6410:e4eb71ae8e96 HEAD

Changed .h ifdef/defines to use <NAME>_H format.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 11:31:27 +0300
parents 1e73f144cd84
children eccb154b310c
line wrap: on
line source

#ifndef CRC32_H
#define CRC32_H

uint32_t crc32(const void *data, size_t size);
uint32_t crc32_str(const char *str);

#endif