X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/3e134b4c20a5528b8264cd87d3fdebd0b2df6fd9..eabe8cea775c61e32eb64557199baf1b167aa50d:/common/crc32.h diff --git a/common/crc32.h b/common/crc32.h index 7df7c79d..8876dc96 100644 --- a/common/crc32.h +++ b/common/crc32.h @@ -9,7 +9,19 @@ #ifndef __CRC32_H #define __CRC32_H +#include +#include + + +#ifdef __cplusplus +extern "C" { +#endif + void crc32 (const uint8_t *data, const size_t len, uint8_t *crc); void crc32_append (uint8_t *data, const size_t len); +#ifdef __cplusplus +} +#endif + #endif