12 lines
135 B
C
12 lines
135 B
C
/* crc.h */
|
|
|
|
#ifndef __CRC_H
|
|
#define __CRC_H
|
|
|
|
#include "types.h"
|
|
|
|
extern bool check_crc(char *buffer, int len);
|
|
|
|
#endif /* __CRC_H */
|
|
|