1 /* 2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited 3 */ 4 5 #ifndef _CRC_CRC16_H 6 #define _CRC_CRC16_H 7 8 #include <stdint.h> 9 #ifdef __cplusplus 10 extern "C" { 11 #endif /* __cplusplus */ 12 13 uint16_t utils_crc16(const char *buf, int len); 14 15 #ifdef __cplusplus 16 } 17 #endif /* __cplusplus */ 18 #endif