diff options
Diffstat (limited to 'testing/yup-comm/utils/crc32q.h')
| -rw-r--r-- | testing/yup-comm/utils/crc32q.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/yup-comm/utils/crc32q.h b/testing/yup-comm/utils/crc32q.h new file mode 100644 index 0000000..54ea16d --- /dev/null +++ b/testing/yup-comm/utils/crc32q.h @@ -0,0 +1,12 @@ +/* Author: Jan Sucan */ + +#ifndef CRC32Q_H_ +#define CRC32Q_H_ + +#include <stdint.h> +#include <stdlib.h> + +void crc32q_init(void); +uint32_t crc32q(const void * const buf, size_t size); + +#endif /* CRC32Q_H_ */
\ No newline at end of file |
