gdbstub/mini-gdbstub/include/utils/csum.h

10 lines
129 B
C
Raw Normal View History

2025-09-21 16:18:35 +08:00
#ifndef CSUM_H
#define CSUM_H
#include <stddef.h>
#include <stdint.h>
uint8_t compute_checksum(char *buf, size_t len);
#endif