16#ifndef __WSCBOR_ENC_H__
17#define __WSCBOR_ENC_H__
19#include <ws_symbol_export.h>
WS_DLL_PUBLIC void wscbor_enc_bstr(GByteArray *buf, const uint8_t *ptr, size_t len)
Definition wscbor_enc.c:84
WS_DLL_PUBLIC void wscbor_enc_boolean(GByteArray *buf, bool value)
Definition wscbor_enc.c:65
WS_DLL_PUBLIC void wscbor_enc_map_head(GByteArray *buf, size_t len)
Definition wscbor_enc.c:111
WS_DLL_PUBLIC void wscbor_enc_int64(GByteArray *buf, int64_t value)
Definition wscbor_enc.c:73
WS_DLL_PUBLIC void wscbor_enc_uint64(GByteArray *buf, uint64_t value)
Definition wscbor_enc.c:69
WS_DLL_PUBLIC void wscbor_enc_bstr_bytearray(GByteArray *buf, GByteArray *src)
Definition wscbor_enc.c:91
WS_DLL_PUBLIC void wscbor_enc_undefined(GByteArray *buf)
Definition wscbor_enc.c:57
WS_DLL_PUBLIC void wscbor_enc_array_head(GByteArray *buf, size_t len)
Definition wscbor_enc.c:107
WS_DLL_PUBLIC void wscbor_enc_null(GByteArray *buf)
Definition wscbor_enc.c:61
WS_DLL_PUBLIC void wscbor_enc_tstr(GByteArray *buf, const char *ptr)
Definition wscbor_enc.c:98