mirror of
https://github.com/tsukumijima/px4_drv.git
synced 2025-07-23 04:03:01 +02:00
9 lines
118 B
C
9 lines
118 B
C
// crc32.h
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
uint32_t crc32_calc(const void *buf, size_t size);
|