[BACK]Return to tolower_.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/gen/tolower_.c between version 1.13 and 1.14

version 1.13, 2010/06/01 13:52:08 version 1.14, 2013/04/13 10:16:27
Line 18  __RCSID("$NetBSD$");
Line 18  __RCSID("$NetBSD$");
 #error "EOF != -1"  #error "EOF != -1"
 #endif  #endif
   
 const short _C_tolower_[1 + _CTYPE_NUM_CHARS] = {  const short _C_tolower_tab_[1 + _CTYPE_NUM_CHARS] = {
         EOF,          EOF,
         0x00,   0x01,   0x02,   0x03,   0x04,   0x05,   0x06,   0x07,          0x00,   0x01,   0x02,   0x03,   0x04,   0x05,   0x06,   0x07,
         0x08,   0x09,   0x0a,   0x0b,   0x0c,   0x0d,   0x0e,   0x0f,          0x08,   0x09,   0x0a,   0x0b,   0x0c,   0x0d,   0x0e,   0x0f,
Line 54  const short _C_tolower_[1 + _CTYPE_NUM_C
Line 54  const short _C_tolower_[1 + _CTYPE_NUM_C
         0xf8,   0xf9,   0xfa,   0xfb,   0xfc,   0xfd,   0xfe,   0xff          0xf8,   0xf9,   0xfa,   0xfb,   0xfc,   0xfd,   0xfe,   0xff
 };  };
   
 const short *_tolower_tab_ = &_C_tolower_[0];  #ifdef __BUILD_LEGACY
   #ifdef __weak_alias
   __weak_alias(_C_tolower_, _C_tolower_tab_)
   #endif
   #endif
   
   const short *_tolower_tab_ = &_C_tolower_tab_[0];

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

CVSweb <webmaster@jp.NetBSD.org>