mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
10 lines
146 B
C
10 lines
146 B
C
#ifndef CRC32_H
|
|
#define CRC32_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifndef HAVE_ZLIB
|
|
unsigned int crc32(const void *buf, unsigned int size);
|
|
#endif
|
|
|
|
#endif
|