1 /* 2 * Copyright (C) 2015-2018 Alibaba Group Holding Limited 3 */ 4 5 #ifndef __COAP_DESERIALIZE_H__ 6 #define __COAP_DESERIALIZE_H__ 7 #include <stdio.h> 8 9 #include "iotx_coap_internal.h" 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif /* __cplusplus */ 14 15 int CoAPDeserialize_Message(CoAPMessage *msg, unsigned char *buf, int buflen); 16 17 #ifdef __cplusplus 18 } 19 #endif /* __cplusplus */ 20 21 #endif 22