HomeSort by relevance Sort by last modified time
    Searched defs:IS_DIGIT (Results 1 - 2 of 2) sorted by null

  /external/libxml2/include/libxml/
parserInternals.h 123 * IS_DIGIT:
130 #define IS_DIGIT(c) xmlIsDigitQ(c)
136 * Behaves like IS_DIGIT but with a single byte argument
  /external/libxml2/
uri.c 45 #ifdef IS_DIGIT
46 #undef IS_DIGIT
51 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
57 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
    [all...]

Completed in 280 milliseconds