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