mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-03-12 04:36:23 -07:00
11 lines
138 B
C
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
|