thc-hydra/crc32.h
Renato Alencar 1aeda5001c add gzip support for login and password files
* module hydra-teamspeak.c modified, because of
  conflict of crc32 with zlib crc32
2015-07-01 11:00:17 -03:00

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