1 /*
2  * Copyright (C) 2015-2018 Alibaba Group Holding Limited
3  */
4 
5 #ifndef MBCRC_H
6 #define MBCRC_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 uint16_t mb_crc16(uint8_t *frame, uint16_t frame_len);
13 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif
19