thc-hydra/crc32.h
2017-07-05 08:48:00 +02:00

11 lines
138 B
C

#ifndef CRC32_H
#define CRC32_H
#include <sys/types.h>
#ifndef HAVE_ZLIB
uint32_t crc32(const void *buf, uint32_t size);
#endif
#endif