mirror of
https://github.com/rehius/busk.git
synced 2024-11-16 14:09:40 +00:00
11 lines
180 B
C
11 lines
180 B
C
|
#include "stdint.h"
|
||
|
|
||
|
struct fw_header {
|
||
|
uint32_t size;
|
||
|
uint32_t crc;
|
||
|
uint8_t data[];
|
||
|
};
|
||
|
|
||
|
typedef void nopar();
|
||
|
|
||
|
unsigned int crc32 (const unsigned char *buf, int len);
|