|
luat_soc_sdk_2024 V1.0
|
#include "luat_base.h"类型定义 | |
| typedef void * | luat_iconv_t |
函数 | |
| luat_iconv_t | luat_iconv_open (const char *to_code, const char *from_code) |
| 开启iconv转换流,分配内存 | |
| size_t | luat_iconv_convert (luat_iconv_t cd, char **inbuf, size_t *in_bytes_left, char **outbuf, size_t *out_bytes_left) |
| 转换编码格式 | |
| int | luat_iconv_close (luat_iconv_t cd) |
| 关闭iconv转换流,释放内存 | |