source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/ctype/__ctype_tolower_loc.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 1.1 KB
Line 
1#include <stdint.h>
2
3static const int32_t table[] = {
40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
80,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,
916,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,
1032,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,
1148,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,
1264,
13'a','b','c','d','e','f','g','h','i','j','k','l','m',
14'n','o','p','q','r','s','t','u','v','w','x','y','z',
1591,92,93,94,95,96,
16'a','b','c','d','e','f','g','h','i','j','k','l','m',
17'n','o','p','q','r','s','t','u','v','w','x','y','z',
18123,124,125,126,127,
190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
23};
24
25static const int32_t *const ptable = table+128;
26
27const int32_t **__ctype_tolower_loc(void)
28{
29 return (void *)&ptable;
30}
Note: See TracBrowser for help on using the repository browser.