12345678910111213141516171819202122232425262728293031323334 |
- /*! \addtogroup UNICODE
- * @{
- */
- /*!
- *
- * @file charsetdet.h
- *
- * @brief This file specifies the character detection APIs
- *
- * @note Copyright (c) 2009 Sunplus Technology Co., Ltd. \n
- * All rights reserved.
- *
- * @author
- *
- ******************************************************************************/
- #ifndef __CHARSETDET_H__
- #define __CHARSETDET_H__
- /******************************************************************************/
- /*!
- * @brief Guess a codepage by a raw character stream
- *
- * @param rawchr raw character stream
- * @param size of raw character stream
- *
- * @return guessed code page number
- *******************************************************************************/
- UINT32 CS_GuessCodePage(const UINT8 *rawchr, UINT32 size);
- /*! @} end of defgroup Unicode */
- #endif // __CHARSETDET_H__
- /*! @} end of addtogroup UNICODE */
|