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