Diff for /XML/parserInternals.h between versions 1.18 and 1.19

version 1.18, 1999/09/30 15:43:35 version 1.19, 1999/12/18 11:28:54
Line 443  typedef unsigned char CHARVAL; Line 443  typedef unsigned char CHARVAL;
  * [85] BaseChar ::= ... long list see REC ...   * [85] BaseChar ::= ... long list see REC ...
  */   */
 #define IS_BASECHAR(c)                                                  \  #define IS_BASECHAR(c)                                                  \
     ((((c) >= 0x41) && ((c) <= 0x5a)) ||                                \       ((((c) >= 0x0041) && ((c) <= 0x005A)) ||                           \
      (((c) >= 0x61) && ((c) <= 0x7a)) ||                                \        (((c) >= 0x0061) && ((c) <= 0x007A)) ||                           \
      (((c) >= 0xaa) && ((c) <= 0x5b)) ||                                \        (((c) >= 0x00C0) && ((c) <= 0x00D6)) ||                           \
      (((c) >= 0xc0) && ((c) <= 0xd6)) ||                                \        (((c) >= 0x00D8) && ((c) <= 0x00F6)) ||                           \
      (((c) >= 0xd8) && ((c) <= 0xf6)) ||                                \        (((c) >= 0x00F8) && ((c) <= 0x00FF)))
      (((c) >= 0xf8) && ((c) <= 0xff)) ||                                \  
       ((c) == 0xba))  
   
 /*  /*
  * [88] Digit ::= ... long list see REC ...   * [88] Digit ::= ... long list see REC ...

Removed from v.1.18  
changed lines
  Added in v.1.19


Webmaster