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

📄 xmlunicode.c.svn-base

📁 这是一个用于解析xml文件的类库。使用这个类库
💻 SVN-BASE
📖 第 1 页 / 共 5 页
字号:
xmlUCSIsBasicLatin(int code) {    return(((code >= 0x0000) && (code <= 0x007F)));}/** * xmlUCSIsBengali: * @code: UCS code point * * Check whether the character is part of Bengali UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsBengali(int code) {    return(((code >= 0x0980) && (code <= 0x09FF)));}/** * xmlUCSIsBlockElements: * @code: UCS code point * * Check whether the character is part of BlockElements UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsBlockElements(int code) {    return(((code >= 0x2580) && (code <= 0x259F)));}/** * xmlUCSIsBopomofo: * @code: UCS code point * * Check whether the character is part of Bopomofo UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsBopomofo(int code) {    return(((code >= 0x3100) && (code <= 0x312F)));}/** * xmlUCSIsBopomofoExtended: * @code: UCS code point * * Check whether the character is part of BopomofoExtended UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsBopomofoExtended(int code) {    return(((code >= 0x31A0) && (code <= 0x31BF)));}/** * xmlUCSIsBoxDrawing: * @code: UCS code point * * Check whether the character is part of BoxDrawing UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsBoxDrawing(int code) {    return(((code >= 0x2500) && (code <= 0x257F)));}/** * xmlUCSIsBraillePatterns: * @code: UCS code point * * Check whether the character is part of BraillePatterns UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsBraillePatterns(int code) {    return(((code >= 0x2800) && (code <= 0x28FF)));}/** * xmlUCSIsBuhid: * @code: UCS code point * * Check whether the character is part of Buhid UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsBuhid(int code) {    return(((code >= 0x1740) && (code <= 0x175F)));}/** * xmlUCSIsByzantineMusicalSymbols: * @code: UCS code point * * Check whether the character is part of ByzantineMusicalSymbols UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsByzantineMusicalSymbols(int code) {    return(((code >= 0x1D000) && (code <= 0x1D0FF)));}/** * xmlUCSIsCJKCompatibility: * @code: UCS code point * * Check whether the character is part of CJKCompatibility UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKCompatibility(int code) {    return(((code >= 0x3300) && (code <= 0x33FF)));}/** * xmlUCSIsCJKCompatibilityForms: * @code: UCS code point * * Check whether the character is part of CJKCompatibilityForms UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKCompatibilityForms(int code) {    return(((code >= 0xFE30) && (code <= 0xFE4F)));}/** * xmlUCSIsCJKCompatibilityIdeographs: * @code: UCS code point * * Check whether the character is part of CJKCompatibilityIdeographs UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKCompatibilityIdeographs(int code) {    return(((code >= 0xF900) && (code <= 0xFAFF)));}/** * xmlUCSIsCJKCompatibilityIdeographsSupplement: * @code: UCS code point * * Check whether the character is part of CJKCompatibilityIdeographsSupplement UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKCompatibilityIdeographsSupplement(int code) {    return(((code >= 0x2F800) && (code <= 0x2FA1F)));}/** * xmlUCSIsCJKRadicalsSupplement: * @code: UCS code point * * Check whether the character is part of CJKRadicalsSupplement UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKRadicalsSupplement(int code) {    return(((code >= 0x2E80) && (code <= 0x2EFF)));}/** * xmlUCSIsCJKSymbolsandPunctuation: * @code: UCS code point * * Check whether the character is part of CJKSymbolsandPunctuation UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKSymbolsandPunctuation(int code) {    return(((code >= 0x3000) && (code <= 0x303F)));}/** * xmlUCSIsCJKUnifiedIdeographs: * @code: UCS code point * * Check whether the character is part of CJKUnifiedIdeographs UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKUnifiedIdeographs(int code) {    return(((code >= 0x4E00) && (code <= 0x9FFF)));}/** * xmlUCSIsCJKUnifiedIdeographsExtensionA: * @code: UCS code point * * Check whether the character is part of CJKUnifiedIdeographsExtensionA UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKUnifiedIdeographsExtensionA(int code) {    return(((code >= 0x3400) && (code <= 0x4DBF)));}/** * xmlUCSIsCJKUnifiedIdeographsExtensionB: * @code: UCS code point * * Check whether the character is part of CJKUnifiedIdeographsExtensionB UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCJKUnifiedIdeographsExtensionB(int code) {    return(((code >= 0x20000) && (code <= 0x2A6DF)));}/** * xmlUCSIsCherokee: * @code: UCS code point * * Check whether the character is part of Cherokee UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCherokee(int code) {    return(((code >= 0x13A0) && (code <= 0x13FF)));}/** * xmlUCSIsCombiningDiacriticalMarks: * @code: UCS code point * * Check whether the character is part of CombiningDiacriticalMarks UCS Block * * Returns 1 if true 0 otherwise */intxmlUCSIsCombiningDiacriticalMarks(int code) {    return(((code >= 0x0300) && (code <= 0x036F)));}/** * xmlUCSIsCombiningDiacriticalMarksforSymbols: * @code: UCS code point * * Check whether the character is part of CombiningDiacriticalMarksforSymbols UCS Block * * Returns 1 if true 0 otherwise */intxm

⌨️ 快捷键说明

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