source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/ctype/__ctype_toupper_loc.c@ 337

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

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_toupper_loc(void)
28{
29 return (void *)&ptable;
30}
Note: See TracBrowser for help on using the repository browser.