更新硬件SDK

This commit is contained in:
kerwincui
2023-03-04 03:44:56 +08:00
parent dcdf6e1b7c
commit e39d3d2f03
1900 changed files with 663153 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/**************************************************************************
* Copyright (C), AirM2M Tech. Co., Ltd.
*
* Name: iconv.h
* Author: liweiqiang
* Version: V0.1
* Date: 2013/7/15
*
* Description:
* <20>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD><D7AA>
**************************************************************************/
#ifndef __ICONV_H__
#define __ICONV_H__
// #include "stddef.h"
/* Identifier for conversion method from one codeset to another. */
typedef void *iconv_t;
/* Allocate descriptor for code conversion from codeset FROMCODE to
codeset TOCODE. */
extern iconv_t iconv_open (const char *to_code, const char *from_code);
/* Convert at most *INBYTESLEFT bytes from *INBUF according to the
code conversion algorithm specified by CD and place up to
*OUTBYTESLEFT bytes in buffer at *OUTBUF. */
extern size_t iconv_convert (iconv_t __cd, char ** __inbuf,
size_t * __inbytesleft,
char ** __outbuf,
size_t * __outbytesleft);
/* Free resources allocated for descriptor CD for code conversion. */
extern int iconv_close (iconv_t cd);
#endif/*__ICONV_H__*/