| 
    Eneboo - Documentación para desarrolladores 
   | 
 
Ir al código fuente de este archivo.
Clases | |
| struct | _xmlChSRange | 
| struct | _xmlChLRange | 
| struct | _xmlChRangeGroup | 
'defines' | |
| #define | xmlIsBaseChar_ch(c) | 
| #define | xmlIsBaseCharQ(c) | 
| #define | xmlIsBlank_ch(c) | 
| #define | xmlIsBlankQ(c) | 
| #define | xmlIsChar_ch(c) | 
| #define | xmlIsCharQ(c) | 
| #define | xmlIsCombiningQ(c) | 
| #define | xmlIsDigit_ch(c) (((0x30 <= (c)) && ((c) <= 0x39))) | 
| #define | xmlIsDigitQ(c) | 
| #define | xmlIsExtender_ch(c) (((c) == 0xb7)) | 
| #define | xmlIsExtenderQ(c) | 
| #define | xmlIsIdeographicQ(c) | 
| #define | xmlIsPubidChar_ch(c) (xmlIsPubidChar_tab[(c)]) | 
| #define | xmlIsPubidCharQ(c) | 
'typedefs' | |
| typedef struct _xmlChSRange | xmlChSRange | 
| typedef xmlChSRange * | xmlChSRangePtr | 
| typedef struct _xmlChLRange | xmlChLRange | 
| typedef xmlChLRange * | xmlChLRangePtr | 
| typedef struct _xmlChRangeGroup | xmlChRangeGroup | 
| typedef xmlChRangeGroup * | xmlChRangeGroupPtr | 
Funciones | |
| XMLPUBFUN int XMLCALL | xmlCharInRange (unsigned int val, const xmlChRangeGroup *group) | 
| XMLPUBFUN int XMLCALL | xmlIsBaseChar (unsigned int ch) | 
| XMLPUBFUN int XMLCALL | xmlIsBlank (unsigned int ch) | 
| XMLPUBFUN int XMLCALL | xmlIsChar (unsigned int ch) | 
| XMLPUBFUN int XMLCALL | xmlIsCombining (unsigned int ch) | 
| XMLPUBFUN int XMLCALL | xmlIsDigit (unsigned int ch) | 
| XMLPUBFUN int XMLCALL | xmlIsExtender (unsigned int ch) | 
| XMLPUBFUN int XMLCALL | xmlIsIdeographic (unsigned int ch) | 
| XMLPUBFUN int XMLCALL | xmlIsPubidChar (unsigned int ch) | 
Variables | |
| XMLPUBVAR const xmlChRangeGroup | xmlIsBaseCharGroup | 
| XMLPUBVAR const xmlChRangeGroup | xmlIsCharGroup | 
| XMLPUBVAR const xmlChRangeGroup | xmlIsCombiningGroup | 
| XMLPUBVAR const xmlChRangeGroup | xmlIsDigitGroup | 
| XMLPUBVAR const xmlChRangeGroup | xmlIsExtenderGroup | 
| XMLPUBVAR const xmlChRangeGroup | xmlIsIdeographicGroup | 
| XMLPUBVAR const unsigned char | xmlIsPubidChar_tab [256] | 
| #define xmlIsBaseChar_ch | ( | c | ) | 
| #define xmlIsBaseCharQ | ( | c | ) | 
(((c) < 0x100) ? \ xmlIsBaseChar_ch((c)) : \ xmlCharInRange((c), &xmlIsBaseCharGroup))
xmlIsBaseCharQ: : char to validate
Automatically generated by genChRanges.py
| #define xmlIsBlank_ch | ( | c | ) | 
| #define xmlIsBlankQ | ( | c | ) | 
(((c) < 0x100) ? \ xmlIsBlank_ch((c)) : 0)
xmlIsBlankQ: : char to validate
Automatically generated by genChRanges.py
| #define xmlIsChar_ch | ( | c | ) | 
| #define xmlIsCharQ | ( | c | ) | 
| #define xmlIsCombiningQ | ( | c | ) | 
(((c) < 0x100) ? \ 0 : \ xmlCharInRange((c), &xmlIsCombiningGroup))
xmlIsCombiningQ: : char to validate
Automatically generated by genChRanges.py
| #define xmlIsDigit_ch | ( | c | ) | (((0x30 <= (c)) && ((c) <= 0x39))) | 
xmlIsDigit_ch: : char to validate
Automatically generated by genChRanges.py
| #define xmlIsDigitQ | ( | c | ) | 
(((c) < 0x100) ? \ xmlIsDigit_ch((c)) : \ xmlCharInRange((c), &xmlIsDigitGroup))
xmlIsDigitQ: : char to validate
Automatically generated by genChRanges.py
xmlIsExtender_ch: : char to validate
Automatically generated by genChRanges.py
| #define xmlIsExtenderQ | ( | c | ) | 
(((c) < 0x100) ? \ xmlIsExtender_ch((c)) : \ xmlCharInRange((c), &xmlIsExtenderGroup))
xmlIsExtenderQ: : char to validate
Automatically generated by genChRanges.py
| #define xmlIsIdeographicQ | ( | c | ) | 
| #define xmlIsPubidChar_ch | ( | c | ) | (xmlIsPubidChar_tab[(c)]) | 
xmlIsPubidChar_ch: : char to validate
Automatically generated by genChRanges.py
| #define xmlIsPubidCharQ | ( | c | ) | 
(((c) < 0x100) ? \ xmlIsPubidChar_ch((c)) : 0)
xmlIsPubidCharQ: : char to validate
Automatically generated by genChRanges.py
| typedef struct _xmlChLRange xmlChLRange | 
| typedef xmlChLRange* xmlChLRangePtr | 
| typedef struct _xmlChRangeGroup xmlChRangeGroup | 
| typedef xmlChRangeGroup* xmlChRangeGroupPtr | 
| typedef struct _xmlChSRange xmlChSRange | 
| typedef xmlChSRange* xmlChSRangePtr | 
| XMLPUBFUN int XMLCALL xmlCharInRange | ( | unsigned int | val, | 
| const xmlChRangeGroup * | rptr | ||
| ) | 
Range checking routine
xmlCharInRange: : character to be validated : pointer to range to be used to validate
Does a binary search of the range table to determine if char is valid
Returns: true if character valid, false otherwise
xmlIsBaseChar: : character to validate
This function is DEPRECATED. Use xmlIsBaseChar_ch or xmlIsBaseCharQ instead
Returns true if argument valid, false otherwise
xmlIsBlank: : character to validate
This function is DEPRECATED. Use xmlIsBlank_ch or xmlIsBlankQ instead
Returns true if argument valid, false otherwise
xmlIsChar: : character to validate
This function is DEPRECATED. Use xmlIsChar_ch or xmlIsCharQ instead
Returns true if argument valid, false otherwise
xmlIsCombining: : character to validate
This function is DEPRECATED. Use xmlIsCombiningQ instead
Returns true if argument valid, false otherwise
xmlIsDigit: : character to validate
This function is DEPRECATED. Use xmlIsDigit_ch or xmlIsDigitQ instead
Returns true if argument valid, false otherwise
xmlIsExtender: : character to validate
This function is DEPRECATED. Use xmlIsExtender_ch or xmlIsExtenderQ instead
Returns true if argument valid, false otherwise
xmlIsIdeographic: : character to validate
This function is DEPRECATED. Use xmlIsIdeographicQ instead
Returns true if argument valid, false otherwise
xmlIsPubidChar: : character to validate
This function is DEPRECATED. Use xmlIsPubidChar_ch or xmlIsPubidCharQ instead
Returns true if argument valid, false otherwise
| XMLPUBVAR const xmlChRangeGroup xmlIsBaseCharGroup | 
| XMLPUBVAR const xmlChRangeGroup xmlIsCharGroup | 
| XMLPUBVAR const xmlChRangeGroup xmlIsCombiningGroup | 
| XMLPUBVAR const xmlChRangeGroup xmlIsDigitGroup | 
| XMLPUBVAR const xmlChRangeGroup xmlIsExtenderGroup | 
| XMLPUBVAR const xmlChRangeGroup xmlIsIdeographicGroup | 
| XMLPUBVAR const unsigned char xmlIsPubidChar_tab[256] | 
 1.7.4