10 lines
129 B
C
10 lines
129 B
C
|
#ifndef CSUM_H
|
||
|
#define CSUM_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
uint8_t compute_checksum(char *buf, size_t len);
|
||
|
|
||
|
#endif
|