⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 antlr3encodings.c

📁 antlr最新版本V3源代码
💻 C
字号:
/** \File  * Provides basic utility functions to convert between * the various UnNicode character conversions. There are of * course various packages that could be used instaed of these * functions, but then the Antlr 3 C runtime would be dependant * on the particular package. Using ICU for this is a good idea if * your project is already dependant on it. */#include    <antlr3.h>/** \breif Convert 8 bit character to ANTLR char form. * * \param[in] inc Input chracter to transformin 8 bit ASCII form. * \return ANTLR3_UCHAR encoding of the character. */ANTLR3_API ANTLR3_UCHAR antlr3c8toAntlrc(ANTLR3_INT8 inc){    return  (ANTLR3_UCHAR)(inc);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -