github.com/afumu/libc@v0.0.6/netbsd/ctype_.cpp.c (about) 1 # 1 "ctype_.c" 2 # 1 "<built-in>" 3 # 1 "<command-line>" 4 # 1 "ctype_.c" 5 # 37 "ctype_.c" 6 # 1 "/usr/include/sys/cdefs.h" 1 3 4 7 # 63 "/usr/include/sys/cdefs.h" 3 4 8 # 1 "/usr/include/amd64/cdefs.h" 1 3 4 9 # 64 "/usr/include/sys/cdefs.h" 2 3 4 10 11 # 1 "/usr/include/sys/cdefs_elf.h" 1 3 4 12 # 66 "/usr/include/sys/cdefs.h" 2 3 4 13 # 629 "/usr/include/sys/cdefs.h" 3 4 14 15 # 629 "/usr/include/sys/cdefs.h" 3 4 16 static __inline long long __zeroll(void) { return 0; } 17 static __inline unsigned long long __zeroull(void) { return 0; } 18 # 38 "ctype_.c" 2 19 # 46 "ctype_.c" 20 # 1 "/usr/include/sys/ctype_bits.h" 1 3 4 21 # 60 "/usr/include/sys/ctype_bits.h" 3 4 22 23 # 60 "/usr/include/sys/ctype_bits.h" 3 4 24 #pragma GCC visibility push(default) 25 # 60 "/usr/include/sys/ctype_bits.h" 3 4 26 27 extern const unsigned short *_ctype_tab_; 28 extern const short *_tolower_tab_; 29 extern const short *_toupper_tab_; 30 31 extern const unsigned short _C_ctype_tab_[]; 32 extern const short _C_toupper_tab_[]; 33 extern const short _C_tolower_tab_[]; 34 35 # 68 "/usr/include/sys/ctype_bits.h" 3 4 36 #pragma GCC visibility pop 37 # 68 "/usr/include/sys/ctype_bits.h" 3 4 38 39 # 47 "ctype_.c" 2 40 # 1 "/usr/include/stdio.h" 1 3 4 41 # 41 "/usr/include/stdio.h" 3 4 42 # 1 "/usr/include/sys/featuretest.h" 1 3 4 43 # 42 "/usr/include/stdio.h" 2 3 4 44 # 1 "/usr/include/sys/ansi.h" 1 3 4 45 # 35 "/usr/include/sys/ansi.h" 3 4 46 # 1 "/usr/include/amd64/ansi.h" 1 3 4 47 48 49 # 1 "/usr/include/sys/common_ansi.h" 1 3 4 50 # 37 "/usr/include/sys/common_ansi.h" 3 4 51 # 1 "/usr/include/amd64/int_types.h" 1 3 4 52 # 38 "/usr/include/amd64/int_types.h" 3 4 53 # 1 "/usr/include/sys/common_int_types.h" 1 3 4 54 # 45 "/usr/include/sys/common_int_types.h" 3 4 55 typedef signed char __int8_t; 56 typedef unsigned char __uint8_t; 57 typedef short int __int16_t; 58 typedef short unsigned int __uint16_t; 59 typedef int __int32_t; 60 typedef unsigned int __uint32_t; 61 typedef long int __int64_t; 62 typedef long unsigned int __uint64_t; 63 64 65 66 67 68 typedef long int __intptr_t; 69 typedef long unsigned int __uintptr_t; 70 # 39 "/usr/include/amd64/int_types.h" 2 3 4 71 # 38 "/usr/include/sys/common_ansi.h" 2 3 4 72 # 3 "/usr/include/amd64/ansi.h" 2 3 4 73 # 36 "/usr/include/sys/ansi.h" 2 3 4 74 75 typedef char * __caddr_t; 76 typedef __uint32_t __gid_t; 77 typedef __uint32_t __in_addr_t; 78 typedef __uint16_t __in_port_t; 79 typedef __uint32_t __mode_t; 80 typedef __int64_t __off_t; 81 typedef __int32_t __pid_t; 82 typedef __uint8_t __sa_family_t; 83 typedef unsigned int __socklen_t; 84 typedef __uint32_t __uid_t; 85 typedef __uint64_t __fsblkcnt_t; 86 typedef __uint64_t __fsfilcnt_t; 87 88 struct __tag_wctrans_t; 89 typedef struct __tag_wctrans_t *__wctrans_t; 90 91 struct __tag_wctype_t; 92 typedef struct __tag_wctype_t *__wctype_t; 93 94 95 96 97 98 typedef union { 99 __int64_t __mbstateL; 100 char __mbstate8[128]; 101 } __mbstate_t; 102 # 72 "/usr/include/sys/ansi.h" 3 4 103 typedef __builtin_va_list __va_list; 104 # 43 "/usr/include/stdio.h" 2 3 4 105 106 107 typedef long unsigned int size_t; 108 109 110 111 typedef long int ssize_t; 112 # 60 "/usr/include/stdio.h" 3 4 113 # 1 "/usr/include/sys/null.h" 1 3 4 114 # 61 "/usr/include/stdio.h" 2 3 4 115 116 117 118 119 120 121 typedef struct __sfpos { 122 __off_t _pos; 123 __mbstate_t _mbstate_in, _mbstate_out; 124 } fpos_t; 125 # 81 "/usr/include/stdio.h" 3 4 126 struct __sbuf { 127 unsigned char *_base; 128 int _size; 129 }; 130 # 112 "/usr/include/stdio.h" 3 4 131 typedef struct __sFILE { 132 unsigned char *_p; 133 int _r; 134 int _w; 135 unsigned short _flags; 136 short _file; 137 struct __sbuf _bf; 138 int _lbfsize; 139 140 141 void *_cookie; 142 int (*_close)(void *); 143 ssize_t (*_read) (void *, void *, size_t); 144 __off_t (*_seek) (void *, __off_t, int); 145 ssize_t (*_write)(void *, const void *, size_t); 146 147 148 struct __sbuf _ext; 149 150 151 unsigned char *_up; 152 int _ur; 153 154 155 unsigned char _ubuf[3]; 156 unsigned char _nbuf[1]; 157 158 int (*_flush)(void *); 159 160 char _lb_unused[sizeof(struct __sbuf) - sizeof(int (*)(void *))]; 161 162 163 int _blksize; 164 __off_t _offset; 165 } FILE; 166 167 168 # 148 "/usr/include/stdio.h" 3 4 169 #pragma GCC visibility push(default) 170 # 148 "/usr/include/stdio.h" 3 4 171 172 extern FILE __sF[3]; 173 174 # 150 "/usr/include/stdio.h" 3 4 175 #pragma GCC visibility pop 176 # 150 "/usr/include/stdio.h" 3 4 177 178 # 222 "/usr/include/stdio.h" 3 4 179 180 # 222 "/usr/include/stdio.h" 3 4 181 #pragma GCC visibility push(default) 182 # 222 "/usr/include/stdio.h" 3 4 183 184 void clearerr(FILE *); 185 int fclose(FILE *); 186 int feof(FILE *); 187 int ferror(FILE *); 188 int fflush(FILE *); 189 int fgetc(FILE *); 190 char *fgets(char * restrict, int, FILE * restrict); 191 FILE *fopen(const char * restrict , const char * restrict); 192 int fprintf(FILE * restrict, const char * restrict, ...) 193 __attribute__((__format__ (__printf__, 2, 3))); 194 int fputc(int, FILE *); 195 int fputs(const char * restrict, FILE * restrict); 196 size_t fread(void * restrict, size_t, size_t, FILE * restrict); 197 FILE *freopen(const char * restrict, const char * restrict, 198 FILE * restrict); 199 int fscanf(FILE * restrict, const char * restrict, ...) 200 __attribute__((__format__ (__scanf__, 2, 3))); 201 int fseek(FILE *, long, int); 202 long ftell(FILE *); 203 size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict); 204 int getc(FILE *); 205 int getchar(void); 206 void perror(const char *); 207 int printf(const char * restrict, ...) 208 __attribute__((__format__ (__printf__, 1, 2))); 209 int putc(int, FILE *); 210 int putchar(int); 211 int puts(const char *); 212 int remove(const char *); 213 void rewind(FILE *); 214 int scanf(const char * restrict, ...) 215 __attribute__((__format__ (__scanf__, 1, 2))); 216 void setbuf(FILE * restrict, char * restrict); 217 int setvbuf(FILE * restrict, char * restrict, int, size_t); 218 int sscanf(const char * restrict, const char * restrict, ...) 219 __attribute__((__format__ (__scanf__, 2, 3))); 220 FILE *tmpfile(void); 221 int ungetc(int, FILE *); 222 int vfprintf(FILE * restrict, const char * restrict, __va_list) 223 __attribute__((__format__ (__printf__, 2, 0))); 224 int vprintf(const char * restrict, __va_list) 225 __attribute__((__format__ (__printf__, 1, 0))); 226 227 228 char *gets(char *); 229 int sprintf(char * restrict, const char * restrict, ...) 230 __attribute__((__format__ (__printf__, 2, 3))); 231 char *tmpnam(char *); 232 int vsprintf(char * restrict, const char * restrict, 233 __va_list) 234 __attribute__((__format__ (__printf__, 2, 0))); 235 236 237 238 239 240 int rename (const char *, const char *); 241 242 243 # 281 "/usr/include/stdio.h" 3 4 244 #pragma GCC visibility pop 245 # 281 "/usr/include/stdio.h" 3 4 246 247 248 249 int fgetpos(FILE * restrict, fpos_t * restrict) __asm("__fgetpos50"); 250 int fsetpos(FILE *, const fpos_t *) __asm("__fsetpos50"); 251 # 295 "/usr/include/stdio.h" 3 4 252 253 # 295 "/usr/include/stdio.h" 3 4 254 #pragma GCC visibility push(default) 255 # 295 "/usr/include/stdio.h" 3 4 256 257 char *ctermid(char *); 258 259 260 261 char *cuserid(char *); 262 263 FILE *fdopen(int, const char *); 264 int fileno(FILE *); 265 266 # 304 "/usr/include/stdio.h" 3 4 267 #pragma GCC visibility pop 268 # 304 "/usr/include/stdio.h" 3 4 269 270 271 272 273 274 275 276 277 278 # 312 "/usr/include/stdio.h" 3 4 279 #pragma GCC visibility push(default) 280 # 312 "/usr/include/stdio.h" 3 4 281 282 void flockfile(FILE *); 283 int ftrylockfile(FILE *); 284 void funlockfile(FILE *); 285 int getc_unlocked(FILE *); 286 int getchar_unlocked(void); 287 int putc_unlocked(int, FILE *); 288 int putchar_unlocked(int); 289 290 # 320 "/usr/include/stdio.h" 3 4 291 #pragma GCC visibility pop 292 # 320 "/usr/include/stdio.h" 3 4 293 294 295 296 297 298 299 300 301 302 # 328 "/usr/include/stdio.h" 3 4 303 #pragma GCC visibility push(default) 304 # 328 "/usr/include/stdio.h" 3 4 305 306 int pclose(FILE *); 307 FILE *popen(const char *, const char *); 308 309 # 331 "/usr/include/stdio.h" 3 4 310 #pragma GCC visibility pop 311 # 331 "/usr/include/stdio.h" 3 4 312 313 314 315 316 # 334 "/usr/include/stdio.h" 3 4 317 #pragma GCC visibility push(default) 318 # 334 "/usr/include/stdio.h" 3 4 319 320 FILE *popenve(const char *, char *const *, char *const *, const char *); 321 322 # 336 "/usr/include/stdio.h" 3 4 323 #pragma GCC visibility pop 324 # 336 "/usr/include/stdio.h" 3 4 325 326 # 347 "/usr/include/stdio.h" 3 4 327 328 # 347 "/usr/include/stdio.h" 3 4 329 #pragma GCC visibility push(default) 330 # 347 "/usr/include/stdio.h" 3 4 331 332 int snprintf(char * restrict, size_t, const char * restrict, ...) 333 __attribute__((__format__ (__printf__, 3, 4))); 334 int vsnprintf(char * restrict, size_t, const char * restrict, 335 __va_list) 336 __attribute__((__format__ (__printf__, 3, 0))); 337 338 # 353 "/usr/include/stdio.h" 3 4 339 #pragma GCC visibility pop 340 # 353 "/usr/include/stdio.h" 3 4 341 342 343 344 345 346 347 348 349 # 360 "/usr/include/stdio.h" 3 4 350 #pragma GCC visibility push(default) 351 # 360 "/usr/include/stdio.h" 3 4 352 353 int getw(FILE *); 354 int putw(int, FILE *); 355 356 357 char *tempnam(const char *, const char *); 358 359 360 # 367 "/usr/include/stdio.h" 3 4 361 #pragma GCC visibility pop 362 # 367 "/usr/include/stdio.h" 3 4 363 364 # 376 "/usr/include/stdio.h" 3 4 365 typedef __off_t off_t; 366 367 368 369 370 # 380 "/usr/include/stdio.h" 3 4 371 #pragma GCC visibility push(default) 372 # 380 "/usr/include/stdio.h" 3 4 373 374 int fseeko(FILE *, __off_t, int); 375 __off_t ftello(FILE *); 376 377 # 383 "/usr/include/stdio.h" 3 4 378 #pragma GCC visibility pop 379 # 383 "/usr/include/stdio.h" 3 4 380 381 382 383 384 385 386 387 388 389 # 391 "/usr/include/stdio.h" 3 4 390 #pragma GCC visibility push(default) 391 # 391 "/usr/include/stdio.h" 3 4 392 393 int vscanf(const char * restrict, __va_list) 394 __attribute__((__format__ (__scanf__, 1, 0))); 395 int vfscanf(FILE * restrict, const char * restrict, __va_list) 396 __attribute__((__format__ (__scanf__, 2, 0))); 397 int vsscanf(const char * restrict, const char * restrict, 398 __va_list) 399 __attribute__((__format__ (__scanf__, 2, 0))); 400 401 # 399 "/usr/include/stdio.h" 3 4 402 #pragma GCC visibility pop 403 # 399 "/usr/include/stdio.h" 3 4 404 405 # 413 "/usr/include/stdio.h" 3 4 406 407 # 413 "/usr/include/stdio.h" 3 4 408 #pragma GCC visibility push(default) 409 # 413 "/usr/include/stdio.h" 3 4 410 411 int asprintf(char ** restrict, const char * restrict, ...) 412 __attribute__((__format__ (__printf__, 2, 3))); 413 char *fgetln(FILE * restrict, size_t * restrict); 414 char *fparseln(FILE *, size_t *, size_t *, const char[3], int); 415 int fpurge(FILE *); 416 void setbuffer(FILE *, char *, int); 417 int setlinebuf(FILE *); 418 int vasprintf(char ** restrict, const char * restrict, 419 __va_list) 420 __attribute__((__format__ (__printf__, 2, 0))); 421 const char *fmtcheck(const char *, const char *) 422 __attribute__((__format_arg__ (2))); 423 424 # 426 "/usr/include/stdio.h" 3 4 425 #pragma GCC visibility pop 426 # 426 "/usr/include/stdio.h" 3 4 427 428 429 430 431 432 433 # 431 "/usr/include/stdio.h" 3 4 434 #pragma GCC visibility push(default) 435 # 431 "/usr/include/stdio.h" 3 4 436 437 FILE *funopen(const void *, 438 int (*)(void *, char *, int), 439 int (*)(void *, const char *, int), 440 __off_t (*)(void *, __off_t, int), 441 int (*)(void *)); 442 FILE *funopen2(const void *, 443 ssize_t (*)(void *, void *, size_t), 444 ssize_t (*)(void *, const void *, size_t), 445 __off_t (*)(void *, __off_t, int), 446 int (*)(void *), 447 int (*)(void *)); 448 449 # 443 "/usr/include/stdio.h" 3 4 450 #pragma GCC visibility pop 451 # 443 "/usr/include/stdio.h" 3 4 452 453 # 453 "/usr/include/stdio.h" 3 4 454 455 # 453 "/usr/include/stdio.h" 3 4 456 #pragma GCC visibility push(default) 457 # 453 "/usr/include/stdio.h" 3 4 458 459 int __srget(FILE *); 460 int __swbuf(int, FILE *); 461 462 # 456 "/usr/include/stdio.h" 3 4 463 #pragma GCC visibility pop 464 # 456 "/usr/include/stdio.h" 3 4 465 466 467 468 469 470 471 472 473 static __inline int __sputc(int _c, FILE *_p) { 474 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) 475 return *_p->_p++ = (unsigned char)_c; 476 else 477 return __swbuf(_c, _p); 478 } 479 # 513 "/usr/include/stdio.h" 3 4 480 481 # 513 "/usr/include/stdio.h" 3 4 482 #pragma GCC visibility push(default) 483 # 513 "/usr/include/stdio.h" 3 4 484 485 int vdprintf(int, const char * restrict, __va_list) 486 __attribute__((__format__ (__printf__, 2, 0))); 487 int dprintf(int, const char * restrict, ...) 488 __attribute__((__format__ (__printf__, 2, 3))); 489 490 # 518 "/usr/include/stdio.h" 3 4 491 #pragma GCC visibility pop 492 # 518 "/usr/include/stdio.h" 3 4 493 494 # 532 "/usr/include/stdio.h" 3 4 495 496 # 532 "/usr/include/stdio.h" 3 4 497 #pragma GCC visibility push(default) 498 # 532 "/usr/include/stdio.h" 3 4 499 500 FILE *fmemopen(void * restrict, size_t, const char * restrict); 501 FILE *open_memstream(char **, size_t *); 502 ssize_t getdelim(char ** restrict, size_t * restrict, int, 503 FILE * restrict); 504 ssize_t getline(char ** restrict, size_t * restrict, FILE * restrict); 505 506 # 538 "/usr/include/stdio.h" 3 4 507 #pragma GCC visibility pop 508 # 538 "/usr/include/stdio.h" 3 4 509 510 511 512 513 514 typedef struct _locale *locale_t; 515 516 517 518 # 546 "/usr/include/stdio.h" 3 4 519 #pragma GCC visibility push(default) 520 # 546 "/usr/include/stdio.h" 3 4 521 522 int fprintf_l(FILE * restrict, locale_t, const char * restrict, ...) 523 __attribute__((__format__ (__printf__, 3, 4))); 524 int vfprintf_l(FILE * restrict, locale_t, const char * restrict, 525 __va_list) __attribute__((__format__ (__printf__, 3, 0))); 526 int printf_l(locale_t, const char * restrict, ...) 527 __attribute__((__format__ (__printf__, 2, 3))); 528 int vprintf_l(locale_t, const char * restrict, __va_list) 529 __attribute__((__format__ (__printf__, 2, 0))); 530 int asprintf_l(char ** restrict, locale_t, const char * restrict, ...) 531 __attribute__((__format__ (__printf__, 3, 4))); 532 int vasprintf_l(char ** restrict, locale_t, const char * restrict, 533 __va_list) 534 __attribute__((__format__ (__printf__, 3, 0))); 535 int vdprintf_l(int, locale_t, const char * restrict, __va_list) 536 __attribute__((__format__ (__printf__, 3, 0))); 537 int dprintf_l(int, locale_t, const char * restrict, ...) 538 __attribute__((__format__ (__printf__, 3, 4))); 539 int snprintf_l(char * restrict, size_t, locale_t, 540 const char * restrict, ...) __attribute__((__format__ (__printf__, 4, 5))); 541 int vsnprintf_l(char * restrict, size_t, locale_t, 542 const char * restrict, __va_list) __attribute__((__format__ (__printf__, 4, 0))); 543 544 int sprintf_l(char * restrict, locale_t, const char * restrict, ...) 545 __attribute__((__format__ (__printf__, 3, 4))); 546 int vsprintf_l(char * restrict, locale_t, const char * restrict, 547 __va_list) __attribute__((__format__ (__printf__, 3, 0))); 548 549 550 int fscanf_l(FILE * restrict, locale_t, const char * restrict, ...) 551 __attribute__((__format__ (__scanf__, 3, 4))); 552 int scanf_l(locale_t, const char * restrict, ...) 553 __attribute__((__format__ (__scanf__, 2, 3))); 554 int sscanf_l(const char * restrict, locale_t, 555 const char * restrict, ...) __attribute__((__format__ (__scanf__, 3, 4))); 556 int vscanf_l(locale_t, const char * restrict, __va_list) 557 __attribute__((__format__ (__scanf__, 2, 0))); 558 int vfscanf_l(FILE * restrict, locale_t, const char * restrict, 559 __va_list) __attribute__((__format__ (__scanf__, 3, 0))); 560 int vsscanf_l(const char * restrict, locale_t, const char * restrict, 561 __va_list) __attribute__((__format__ (__scanf__, 3, 0))); 562 563 int snprintf_ss(char *restrict, size_t, const char * restrict, ...) 564 __attribute__((__format__ (__printf__, 3, 4))); 565 int vsnprintf_ss(char *restrict, size_t, const char * restrict, __va_list) 566 __attribute__((__format__ (__printf__, 3, 0))); 567 568 569 # 593 "/usr/include/stdio.h" 3 4 570 #pragma GCC visibility pop 571 # 593 "/usr/include/stdio.h" 3 4 572 573 # 48 "ctype_.c" 2 574 # 1 "ctype_local.h" 1 575 # 31 "ctype_local.h" 576 # 1 "/usr/include/limits.h" 1 3 4 577 # 37 "/usr/include/limits.h" 3 4 578 # 1 "/usr/include/sys/featuretest.h" 1 3 4 579 # 38 "/usr/include/limits.h" 2 3 4 580 # 156 "/usr/include/limits.h" 3 4 581 # 1 "/usr/include/amd64/limits.h" 1 3 4 582 # 39 "/usr/include/amd64/limits.h" 3 4 583 # 1 "/usr/include/sys/featuretest.h" 1 3 4 584 # 40 "/usr/include/amd64/limits.h" 2 3 4 585 # 157 "/usr/include/limits.h" 2 3 4 586 # 166 "/usr/include/limits.h" 3 4 587 # 1 "/usr/include/sys/syslimits.h" 1 3 4 588 # 37 "/usr/include/sys/syslimits.h" 3 4 589 # 1 "/usr/include/sys/featuretest.h" 1 3 4 590 # 38 "/usr/include/sys/syslimits.h" 2 3 4 591 # 167 "/usr/include/limits.h" 2 3 4 592 # 32 "ctype_local.h" 2 593 # 45 "ctype_local.h" 594 595 # 45 "ctype_local.h" 596 extern const unsigned short _C_ctype_tab_[]; 597 extern const short _C_toupper_tab_[]; 598 extern const short _C_tolower_tab_[]; 599 # 49 "ctype_.c" 2 600 # 112 "ctype_.c" 601 const unsigned short _C_ctype_tab_[1 + (1 << 602 # 112 "ctype_.c" 3 4 603 8 604 # 112 "ctype_.c" 605 )] = { 606 0, 607 608 # 114 "ctype_.c" 3 4 609 0x0002 610 # 114 "ctype_.c" 611 , 612 # 114 "ctype_.c" 3 4 613 0x0002 614 # 114 "ctype_.c" 615 , 616 # 114 "ctype_.c" 3 4 617 0x0002 618 # 114 "ctype_.c" 619 , 620 # 114 "ctype_.c" 3 4 621 0x0002 622 # 114 "ctype_.c" 623 , 624 625 # 115 "ctype_.c" 3 4 626 0x0002 627 # 115 "ctype_.c" 628 , 629 # 115 "ctype_.c" 3 4 630 0x0002 631 # 115 "ctype_.c" 632 , 633 # 115 "ctype_.c" 3 4 634 0x0002 635 # 115 "ctype_.c" 636 , 637 # 115 "ctype_.c" 3 4 638 0x0002 639 # 115 "ctype_.c" 640 , 641 642 # 116 "ctype_.c" 3 4 643 0x0002 644 # 116 "ctype_.c" 645 , 646 # 116 "ctype_.c" 3 4 647 0x0200 648 # 116 "ctype_.c" 649 | 650 # 116 "ctype_.c" 3 4 651 0x0002 652 # 116 "ctype_.c" 653 | 654 # 116 "ctype_.c" 3 4 655 0x0040 656 # 116 "ctype_.c" 657 , 658 # 116 "ctype_.c" 3 4 659 0x0002 660 # 116 "ctype_.c" 661 | 662 # 116 "ctype_.c" 3 4 663 0x0040 664 # 116 "ctype_.c" 665 , 666 # 116 "ctype_.c" 3 4 667 0x0002 668 # 116 "ctype_.c" 669 | 670 # 116 "ctype_.c" 3 4 671 0x0040 672 # 116 "ctype_.c" 673 , 674 675 # 117 "ctype_.c" 3 4 676 0x0002 677 # 117 "ctype_.c" 678 | 679 # 117 "ctype_.c" 3 4 680 0x0040 681 # 117 "ctype_.c" 682 , 683 # 117 "ctype_.c" 3 4 684 0x0002 685 # 117 "ctype_.c" 686 | 687 # 117 "ctype_.c" 3 4 688 0x0040 689 # 117 "ctype_.c" 690 , 691 # 117 "ctype_.c" 3 4 692 0x0002 693 # 117 "ctype_.c" 694 , 695 # 117 "ctype_.c" 3 4 696 0x0002 697 # 117 "ctype_.c" 698 , 699 700 # 118 "ctype_.c" 3 4 701 0x0002 702 # 118 "ctype_.c" 703 , 704 # 118 "ctype_.c" 3 4 705 0x0002 706 # 118 "ctype_.c" 707 , 708 # 118 "ctype_.c" 3 4 709 0x0002 710 # 118 "ctype_.c" 711 , 712 # 118 "ctype_.c" 3 4 713 0x0002 714 # 118 "ctype_.c" 715 , 716 717 # 119 "ctype_.c" 3 4 718 0x0002 719 # 119 "ctype_.c" 720 , 721 # 119 "ctype_.c" 3 4 722 0x0002 723 # 119 "ctype_.c" 724 , 725 # 119 "ctype_.c" 3 4 726 0x0002 727 # 119 "ctype_.c" 728 , 729 # 119 "ctype_.c" 3 4 730 0x0002 731 # 119 "ctype_.c" 732 , 733 734 # 120 "ctype_.c" 3 4 735 0x0002 736 # 120 "ctype_.c" 737 , 738 # 120 "ctype_.c" 3 4 739 0x0002 740 # 120 "ctype_.c" 741 , 742 # 120 "ctype_.c" 3 4 743 0x0002 744 # 120 "ctype_.c" 745 , 746 # 120 "ctype_.c" 3 4 747 0x0002 748 # 120 "ctype_.c" 749 , 750 751 # 121 "ctype_.c" 3 4 752 0x0002 753 # 121 "ctype_.c" 754 , 755 # 121 "ctype_.c" 3 4 756 0x0002 757 # 121 "ctype_.c" 758 , 759 # 121 "ctype_.c" 3 4 760 0x0002 761 # 121 "ctype_.c" 762 , 763 # 121 "ctype_.c" 3 4 764 0x0002 765 # 121 "ctype_.c" 766 , 767 768 # 122 "ctype_.c" 3 4 769 0x0200 770 # 122 "ctype_.c" 771 | 772 # 122 "ctype_.c" 3 4 773 0x0400 774 # 122 "ctype_.c" 775 | 776 # 122 "ctype_.c" 3 4 777 0x0040 778 # 122 "ctype_.c" 779 , 780 # 122 "ctype_.c" 3 4 781 0x0008 782 # 122 "ctype_.c" 783 | 784 # 122 "ctype_.c" 3 4 785 0x0400 786 # 122 "ctype_.c" 787 | 788 # 122 "ctype_.c" 3 4 789 0x0020 790 # 122 "ctype_.c" 791 , 792 # 122 "ctype_.c" 3 4 793 0x0008 794 # 122 "ctype_.c" 795 | 796 # 122 "ctype_.c" 3 4 797 0x0400 798 # 122 "ctype_.c" 799 | 800 # 122 "ctype_.c" 3 4 801 0x0020 802 # 122 "ctype_.c" 803 , 804 # 122 "ctype_.c" 3 4 805 0x0008 806 # 122 "ctype_.c" 807 | 808 # 122 "ctype_.c" 3 4 809 0x0400 810 # 122 "ctype_.c" 811 | 812 # 122 "ctype_.c" 3 4 813 0x0020 814 # 122 "ctype_.c" 815 , 816 817 # 123 "ctype_.c" 3 4 818 0x0008 819 # 123 "ctype_.c" 820 | 821 # 123 "ctype_.c" 3 4 822 0x0400 823 # 123 "ctype_.c" 824 | 825 # 123 "ctype_.c" 3 4 826 0x0020 827 # 123 "ctype_.c" 828 , 829 # 123 "ctype_.c" 3 4 830 0x0008 831 # 123 "ctype_.c" 832 | 833 # 123 "ctype_.c" 3 4 834 0x0400 835 # 123 "ctype_.c" 836 | 837 # 123 "ctype_.c" 3 4 838 0x0020 839 # 123 "ctype_.c" 840 , 841 # 123 "ctype_.c" 3 4 842 0x0008 843 # 123 "ctype_.c" 844 | 845 # 123 "ctype_.c" 3 4 846 0x0400 847 # 123 "ctype_.c" 848 | 849 # 123 "ctype_.c" 3 4 850 0x0020 851 # 123 "ctype_.c" 852 , 853 # 123 "ctype_.c" 3 4 854 0x0008 855 # 123 "ctype_.c" 856 | 857 # 123 "ctype_.c" 3 4 858 0x0400 859 # 123 "ctype_.c" 860 | 861 # 123 "ctype_.c" 3 4 862 0x0020 863 # 123 "ctype_.c" 864 , 865 866 # 124 "ctype_.c" 3 4 867 0x0008 868 # 124 "ctype_.c" 869 | 870 # 124 "ctype_.c" 3 4 871 0x0400 872 # 124 "ctype_.c" 873 | 874 # 124 "ctype_.c" 3 4 875 0x0020 876 # 124 "ctype_.c" 877 , 878 # 124 "ctype_.c" 3 4 879 0x0008 880 # 124 "ctype_.c" 881 | 882 # 124 "ctype_.c" 3 4 883 0x0400 884 # 124 "ctype_.c" 885 | 886 # 124 "ctype_.c" 3 4 887 0x0020 888 # 124 "ctype_.c" 889 , 890 # 124 "ctype_.c" 3 4 891 0x0008 892 # 124 "ctype_.c" 893 | 894 # 124 "ctype_.c" 3 4 895 0x0400 896 # 124 "ctype_.c" 897 | 898 # 124 "ctype_.c" 3 4 899 0x0020 900 # 124 "ctype_.c" 901 , 902 # 124 "ctype_.c" 3 4 903 0x0008 904 # 124 "ctype_.c" 905 | 906 # 124 "ctype_.c" 3 4 907 0x0400 908 # 124 "ctype_.c" 909 | 910 # 124 "ctype_.c" 3 4 911 0x0020 912 # 124 "ctype_.c" 913 , 914 915 # 125 "ctype_.c" 3 4 916 0x0008 917 # 125 "ctype_.c" 918 | 919 # 125 "ctype_.c" 3 4 920 0x0400 921 # 125 "ctype_.c" 922 | 923 # 125 "ctype_.c" 3 4 924 0x0020 925 # 125 "ctype_.c" 926 , 927 # 125 "ctype_.c" 3 4 928 0x0008 929 # 125 "ctype_.c" 930 | 931 # 125 "ctype_.c" 3 4 932 0x0400 933 # 125 "ctype_.c" 934 | 935 # 125 "ctype_.c" 3 4 936 0x0020 937 # 125 "ctype_.c" 938 , 939 # 125 "ctype_.c" 3 4 940 0x0008 941 # 125 "ctype_.c" 942 | 943 # 125 "ctype_.c" 3 4 944 0x0400 945 # 125 "ctype_.c" 946 | 947 # 125 "ctype_.c" 3 4 948 0x0020 949 # 125 "ctype_.c" 950 , 951 # 125 "ctype_.c" 3 4 952 0x0008 953 # 125 "ctype_.c" 954 | 955 # 125 "ctype_.c" 3 4 956 0x0400 957 # 125 "ctype_.c" 958 | 959 # 125 "ctype_.c" 3 4 960 0x0020 961 # 125 "ctype_.c" 962 , 963 964 # 126 "ctype_.c" 3 4 965 0x0004 966 # 126 "ctype_.c" 967 | 968 # 126 "ctype_.c" 3 4 969 0x0008 970 # 126 "ctype_.c" 971 | 972 # 126 "ctype_.c" 3 4 973 0x0400 974 # 126 "ctype_.c" 975 | 976 # 126 "ctype_.c" 3 4 977 0x0100 978 # 126 "ctype_.c" 979 , 980 # 126 "ctype_.c" 3 4 981 0x0004 982 # 126 "ctype_.c" 983 | 984 # 126 "ctype_.c" 3 4 985 0x0008 986 # 126 "ctype_.c" 987 | 988 # 126 "ctype_.c" 3 4 989 0x0400 990 # 126 "ctype_.c" 991 | 992 # 126 "ctype_.c" 3 4 993 0x0100 994 # 126 "ctype_.c" 995 , 996 # 126 "ctype_.c" 3 4 997 0x0004 998 # 126 "ctype_.c" 999 | 1000 # 126 "ctype_.c" 3 4 1001 0x0008 1002 # 126 "ctype_.c" 1003 | 1004 # 126 "ctype_.c" 3 4 1005 0x0400 1006 # 126 "ctype_.c" 1007 | 1008 # 126 "ctype_.c" 3 4 1009 0x0100 1010 # 126 "ctype_.c" 1011 , 1012 # 126 "ctype_.c" 3 4 1013 0x0004 1014 # 126 "ctype_.c" 1015 | 1016 # 126 "ctype_.c" 3 4 1017 0x0008 1018 # 126 "ctype_.c" 1019 | 1020 # 126 "ctype_.c" 3 4 1021 0x0400 1022 # 126 "ctype_.c" 1023 | 1024 # 126 "ctype_.c" 3 4 1025 0x0100 1026 # 126 "ctype_.c" 1027 , 1028 1029 # 127 "ctype_.c" 3 4 1030 0x0004 1031 # 127 "ctype_.c" 1032 | 1033 # 127 "ctype_.c" 3 4 1034 0x0008 1035 # 127 "ctype_.c" 1036 | 1037 # 127 "ctype_.c" 3 4 1038 0x0400 1039 # 127 "ctype_.c" 1040 | 1041 # 127 "ctype_.c" 3 4 1042 0x0100 1043 # 127 "ctype_.c" 1044 , 1045 # 127 "ctype_.c" 3 4 1046 0x0004 1047 # 127 "ctype_.c" 1048 | 1049 # 127 "ctype_.c" 3 4 1050 0x0008 1051 # 127 "ctype_.c" 1052 | 1053 # 127 "ctype_.c" 3 4 1054 0x0400 1055 # 127 "ctype_.c" 1056 | 1057 # 127 "ctype_.c" 3 4 1058 0x0100 1059 # 127 "ctype_.c" 1060 , 1061 # 127 "ctype_.c" 3 4 1062 0x0004 1063 # 127 "ctype_.c" 1064 | 1065 # 127 "ctype_.c" 3 4 1066 0x0008 1067 # 127 "ctype_.c" 1068 | 1069 # 127 "ctype_.c" 3 4 1070 0x0400 1071 # 127 "ctype_.c" 1072 | 1073 # 127 "ctype_.c" 3 4 1074 0x0100 1075 # 127 "ctype_.c" 1076 , 1077 # 127 "ctype_.c" 3 4 1078 0x0004 1079 # 127 "ctype_.c" 1080 | 1081 # 127 "ctype_.c" 3 4 1082 0x0008 1083 # 127 "ctype_.c" 1084 | 1085 # 127 "ctype_.c" 3 4 1086 0x0400 1087 # 127 "ctype_.c" 1088 | 1089 # 127 "ctype_.c" 3 4 1090 0x0100 1091 # 127 "ctype_.c" 1092 , 1093 1094 # 128 "ctype_.c" 3 4 1095 0x0004 1096 # 128 "ctype_.c" 1097 | 1098 # 128 "ctype_.c" 3 4 1099 0x0008 1100 # 128 "ctype_.c" 1101 | 1102 # 128 "ctype_.c" 3 4 1103 0x0400 1104 # 128 "ctype_.c" 1105 | 1106 # 128 "ctype_.c" 3 4 1107 0x0100 1108 # 128 "ctype_.c" 1109 , 1110 # 128 "ctype_.c" 3 4 1111 0x0004 1112 # 128 "ctype_.c" 1113 | 1114 # 128 "ctype_.c" 3 4 1115 0x0008 1116 # 128 "ctype_.c" 1117 | 1118 # 128 "ctype_.c" 3 4 1119 0x0400 1120 # 128 "ctype_.c" 1121 | 1122 # 128 "ctype_.c" 3 4 1123 0x0100 1124 # 128 "ctype_.c" 1125 , 1126 # 128 "ctype_.c" 3 4 1127 0x0008 1128 # 128 "ctype_.c" 1129 | 1130 # 128 "ctype_.c" 3 4 1131 0x0400 1132 # 128 "ctype_.c" 1133 | 1134 # 128 "ctype_.c" 3 4 1135 0x0020 1136 # 128 "ctype_.c" 1137 , 1138 # 128 "ctype_.c" 3 4 1139 0x0008 1140 # 128 "ctype_.c" 1141 | 1142 # 128 "ctype_.c" 3 4 1143 0x0400 1144 # 128 "ctype_.c" 1145 | 1146 # 128 "ctype_.c" 3 4 1147 0x0020 1148 # 128 "ctype_.c" 1149 , 1150 1151 # 129 "ctype_.c" 3 4 1152 0x0008 1153 # 129 "ctype_.c" 1154 | 1155 # 129 "ctype_.c" 3 4 1156 0x0400 1157 # 129 "ctype_.c" 1158 | 1159 # 129 "ctype_.c" 3 4 1160 0x0020 1161 # 129 "ctype_.c" 1162 , 1163 # 129 "ctype_.c" 3 4 1164 0x0008 1165 # 129 "ctype_.c" 1166 | 1167 # 129 "ctype_.c" 3 4 1168 0x0400 1169 # 129 "ctype_.c" 1170 | 1171 # 129 "ctype_.c" 3 4 1172 0x0020 1173 # 129 "ctype_.c" 1174 , 1175 # 129 "ctype_.c" 3 4 1176 0x0008 1177 # 129 "ctype_.c" 1178 | 1179 # 129 "ctype_.c" 3 4 1180 0x0400 1181 # 129 "ctype_.c" 1182 | 1183 # 129 "ctype_.c" 3 4 1184 0x0020 1185 # 129 "ctype_.c" 1186 , 1187 # 129 "ctype_.c" 3 4 1188 0x0008 1189 # 129 "ctype_.c" 1190 | 1191 # 129 "ctype_.c" 3 4 1192 0x0400 1193 # 129 "ctype_.c" 1194 | 1195 # 129 "ctype_.c" 3 4 1196 0x0020 1197 # 129 "ctype_.c" 1198 , 1199 1200 # 130 "ctype_.c" 3 4 1201 0x0008 1202 # 130 "ctype_.c" 1203 | 1204 # 130 "ctype_.c" 3 4 1205 0x0400 1206 # 130 "ctype_.c" 1207 | 1208 # 130 "ctype_.c" 3 4 1209 0x0020 1210 # 130 "ctype_.c" 1211 , 1212 # 130 "ctype_.c" 3 4 1213 0x0001 1214 # 130 "ctype_.c" 1215 | 1216 # 130 "ctype_.c" 3 4 1217 0x0008 1218 # 130 "ctype_.c" 1219 | 1220 # 130 "ctype_.c" 3 4 1221 0x0400 1222 # 130 "ctype_.c" 1223 | 1224 # 130 "ctype_.c" 3 4 1225 0x0080 1226 # 130 "ctype_.c" 1227 | 1228 # 130 "ctype_.c" 3 4 1229 0x0100 1230 # 130 "ctype_.c" 1231 , 1232 # 130 "ctype_.c" 3 4 1233 0x0001 1234 # 130 "ctype_.c" 1235 | 1236 # 130 "ctype_.c" 3 4 1237 0x0008 1238 # 130 "ctype_.c" 1239 | 1240 # 130 "ctype_.c" 3 4 1241 0x0400 1242 # 130 "ctype_.c" 1243 | 1244 # 130 "ctype_.c" 3 4 1245 0x0080 1246 # 130 "ctype_.c" 1247 | 1248 # 130 "ctype_.c" 3 4 1249 0x0100 1250 # 130 "ctype_.c" 1251 , 1252 # 130 "ctype_.c" 3 4 1253 0x0001 1254 # 130 "ctype_.c" 1255 | 1256 # 130 "ctype_.c" 3 4 1257 0x0008 1258 # 130 "ctype_.c" 1259 | 1260 # 130 "ctype_.c" 3 4 1261 0x0400 1262 # 130 "ctype_.c" 1263 | 1264 # 130 "ctype_.c" 3 4 1265 0x0080 1266 # 130 "ctype_.c" 1267 | 1268 # 130 "ctype_.c" 3 4 1269 0x0100 1270 # 130 "ctype_.c" 1271 , 1272 1273 # 131 "ctype_.c" 3 4 1274 0x0001 1275 # 131 "ctype_.c" 1276 | 1277 # 131 "ctype_.c" 3 4 1278 0x0008 1279 # 131 "ctype_.c" 1280 | 1281 # 131 "ctype_.c" 3 4 1282 0x0400 1283 # 131 "ctype_.c" 1284 | 1285 # 131 "ctype_.c" 3 4 1286 0x0080 1287 # 131 "ctype_.c" 1288 | 1289 # 131 "ctype_.c" 3 4 1290 0x0100 1291 # 131 "ctype_.c" 1292 , 1293 # 131 "ctype_.c" 3 4 1294 0x0001 1295 # 131 "ctype_.c" 1296 | 1297 # 131 "ctype_.c" 3 4 1298 0x0008 1299 # 131 "ctype_.c" 1300 | 1301 # 131 "ctype_.c" 3 4 1302 0x0400 1303 # 131 "ctype_.c" 1304 | 1305 # 131 "ctype_.c" 3 4 1306 0x0080 1307 # 131 "ctype_.c" 1308 | 1309 # 131 "ctype_.c" 3 4 1310 0x0100 1311 # 131 "ctype_.c" 1312 , 1313 # 131 "ctype_.c" 3 4 1314 0x0001 1315 # 131 "ctype_.c" 1316 | 1317 # 131 "ctype_.c" 3 4 1318 0x0008 1319 # 131 "ctype_.c" 1320 | 1321 # 131 "ctype_.c" 3 4 1322 0x0400 1323 # 131 "ctype_.c" 1324 | 1325 # 131 "ctype_.c" 3 4 1326 0x0080 1327 # 131 "ctype_.c" 1328 | 1329 # 131 "ctype_.c" 3 4 1330 0x0100 1331 # 131 "ctype_.c" 1332 , 1333 # 131 "ctype_.c" 3 4 1334 0x0001 1335 # 131 "ctype_.c" 1336 | 1337 # 131 "ctype_.c" 3 4 1338 0x0008 1339 # 131 "ctype_.c" 1340 | 1341 # 131 "ctype_.c" 3 4 1342 0x0400 1343 # 131 "ctype_.c" 1344 | 1345 # 131 "ctype_.c" 3 4 1346 0x0080 1347 # 131 "ctype_.c" 1348 , 1349 1350 # 132 "ctype_.c" 3 4 1351 0x0001 1352 # 132 "ctype_.c" 1353 | 1354 # 132 "ctype_.c" 3 4 1355 0x0008 1356 # 132 "ctype_.c" 1357 | 1358 # 132 "ctype_.c" 3 4 1359 0x0400 1360 # 132 "ctype_.c" 1361 | 1362 # 132 "ctype_.c" 3 4 1363 0x0080 1364 # 132 "ctype_.c" 1365 , 1366 # 132 "ctype_.c" 3 4 1367 0x0001 1368 # 132 "ctype_.c" 1369 | 1370 # 132 "ctype_.c" 3 4 1371 0x0008 1372 # 132 "ctype_.c" 1373 | 1374 # 132 "ctype_.c" 3 4 1375 0x0400 1376 # 132 "ctype_.c" 1377 | 1378 # 132 "ctype_.c" 3 4 1379 0x0080 1380 # 132 "ctype_.c" 1381 , 1382 # 132 "ctype_.c" 3 4 1383 0x0001 1384 # 132 "ctype_.c" 1385 | 1386 # 132 "ctype_.c" 3 4 1387 0x0008 1388 # 132 "ctype_.c" 1389 | 1390 # 132 "ctype_.c" 3 4 1391 0x0400 1392 # 132 "ctype_.c" 1393 | 1394 # 132 "ctype_.c" 3 4 1395 0x0080 1396 # 132 "ctype_.c" 1397 , 1398 # 132 "ctype_.c" 3 4 1399 0x0001 1400 # 132 "ctype_.c" 1401 | 1402 # 132 "ctype_.c" 3 4 1403 0x0008 1404 # 132 "ctype_.c" 1405 | 1406 # 132 "ctype_.c" 3 4 1407 0x0400 1408 # 132 "ctype_.c" 1409 | 1410 # 132 "ctype_.c" 3 4 1411 0x0080 1412 # 132 "ctype_.c" 1413 , 1414 1415 # 133 "ctype_.c" 3 4 1416 0x0001 1417 # 133 "ctype_.c" 1418 | 1419 # 133 "ctype_.c" 3 4 1420 0x0008 1421 # 133 "ctype_.c" 1422 | 1423 # 133 "ctype_.c" 3 4 1424 0x0400 1425 # 133 "ctype_.c" 1426 | 1427 # 133 "ctype_.c" 3 4 1428 0x0080 1429 # 133 "ctype_.c" 1430 , 1431 # 133 "ctype_.c" 3 4 1432 0x0001 1433 # 133 "ctype_.c" 1434 | 1435 # 133 "ctype_.c" 3 4 1436 0x0008 1437 # 133 "ctype_.c" 1438 | 1439 # 133 "ctype_.c" 3 4 1440 0x0400 1441 # 133 "ctype_.c" 1442 | 1443 # 133 "ctype_.c" 3 4 1444 0x0080 1445 # 133 "ctype_.c" 1446 , 1447 # 133 "ctype_.c" 3 4 1448 0x0001 1449 # 133 "ctype_.c" 1450 | 1451 # 133 "ctype_.c" 3 4 1452 0x0008 1453 # 133 "ctype_.c" 1454 | 1455 # 133 "ctype_.c" 3 4 1456 0x0400 1457 # 133 "ctype_.c" 1458 | 1459 # 133 "ctype_.c" 3 4 1460 0x0080 1461 # 133 "ctype_.c" 1462 , 1463 # 133 "ctype_.c" 3 4 1464 0x0001 1465 # 133 "ctype_.c" 1466 | 1467 # 133 "ctype_.c" 3 4 1468 0x0008 1469 # 133 "ctype_.c" 1470 | 1471 # 133 "ctype_.c" 3 4 1472 0x0400 1473 # 133 "ctype_.c" 1474 | 1475 # 133 "ctype_.c" 3 4 1476 0x0080 1477 # 133 "ctype_.c" 1478 , 1479 1480 # 134 "ctype_.c" 3 4 1481 0x0001 1482 # 134 "ctype_.c" 1483 | 1484 # 134 "ctype_.c" 3 4 1485 0x0008 1486 # 134 "ctype_.c" 1487 | 1488 # 134 "ctype_.c" 3 4 1489 0x0400 1490 # 134 "ctype_.c" 1491 | 1492 # 134 "ctype_.c" 3 4 1493 0x0080 1494 # 134 "ctype_.c" 1495 , 1496 # 134 "ctype_.c" 3 4 1497 0x0001 1498 # 134 "ctype_.c" 1499 | 1500 # 134 "ctype_.c" 3 4 1501 0x0008 1502 # 134 "ctype_.c" 1503 | 1504 # 134 "ctype_.c" 3 4 1505 0x0400 1506 # 134 "ctype_.c" 1507 | 1508 # 134 "ctype_.c" 3 4 1509 0x0080 1510 # 134 "ctype_.c" 1511 , 1512 # 134 "ctype_.c" 3 4 1513 0x0001 1514 # 134 "ctype_.c" 1515 | 1516 # 134 "ctype_.c" 3 4 1517 0x0008 1518 # 134 "ctype_.c" 1519 | 1520 # 134 "ctype_.c" 3 4 1521 0x0400 1522 # 134 "ctype_.c" 1523 | 1524 # 134 "ctype_.c" 3 4 1525 0x0080 1526 # 134 "ctype_.c" 1527 , 1528 # 134 "ctype_.c" 3 4 1529 0x0001 1530 # 134 "ctype_.c" 1531 | 1532 # 134 "ctype_.c" 3 4 1533 0x0008 1534 # 134 "ctype_.c" 1535 | 1536 # 134 "ctype_.c" 3 4 1537 0x0400 1538 # 134 "ctype_.c" 1539 | 1540 # 134 "ctype_.c" 3 4 1541 0x0080 1542 # 134 "ctype_.c" 1543 , 1544 1545 # 135 "ctype_.c" 3 4 1546 0x0001 1547 # 135 "ctype_.c" 1548 | 1549 # 135 "ctype_.c" 3 4 1550 0x0008 1551 # 135 "ctype_.c" 1552 | 1553 # 135 "ctype_.c" 3 4 1554 0x0400 1555 # 135 "ctype_.c" 1556 | 1557 # 135 "ctype_.c" 3 4 1558 0x0080 1559 # 135 "ctype_.c" 1560 , 1561 # 135 "ctype_.c" 3 4 1562 0x0001 1563 # 135 "ctype_.c" 1564 | 1565 # 135 "ctype_.c" 3 4 1566 0x0008 1567 # 135 "ctype_.c" 1568 | 1569 # 135 "ctype_.c" 3 4 1570 0x0400 1571 # 135 "ctype_.c" 1572 | 1573 # 135 "ctype_.c" 3 4 1574 0x0080 1575 # 135 "ctype_.c" 1576 , 1577 # 135 "ctype_.c" 3 4 1578 0x0001 1579 # 135 "ctype_.c" 1580 | 1581 # 135 "ctype_.c" 3 4 1582 0x0008 1583 # 135 "ctype_.c" 1584 | 1585 # 135 "ctype_.c" 3 4 1586 0x0400 1587 # 135 "ctype_.c" 1588 | 1589 # 135 "ctype_.c" 3 4 1590 0x0080 1591 # 135 "ctype_.c" 1592 , 1593 # 135 "ctype_.c" 3 4 1594 0x0001 1595 # 135 "ctype_.c" 1596 | 1597 # 135 "ctype_.c" 3 4 1598 0x0008 1599 # 135 "ctype_.c" 1600 | 1601 # 135 "ctype_.c" 3 4 1602 0x0400 1603 # 135 "ctype_.c" 1604 | 1605 # 135 "ctype_.c" 3 4 1606 0x0080 1607 # 135 "ctype_.c" 1608 , 1609 1610 # 136 "ctype_.c" 3 4 1611 0x0001 1612 # 136 "ctype_.c" 1613 | 1614 # 136 "ctype_.c" 3 4 1615 0x0008 1616 # 136 "ctype_.c" 1617 | 1618 # 136 "ctype_.c" 3 4 1619 0x0400 1620 # 136 "ctype_.c" 1621 | 1622 # 136 "ctype_.c" 3 4 1623 0x0080 1624 # 136 "ctype_.c" 1625 , 1626 # 136 "ctype_.c" 3 4 1627 0x0001 1628 # 136 "ctype_.c" 1629 | 1630 # 136 "ctype_.c" 3 4 1631 0x0008 1632 # 136 "ctype_.c" 1633 | 1634 # 136 "ctype_.c" 3 4 1635 0x0400 1636 # 136 "ctype_.c" 1637 | 1638 # 136 "ctype_.c" 3 4 1639 0x0080 1640 # 136 "ctype_.c" 1641 , 1642 # 136 "ctype_.c" 3 4 1643 0x0001 1644 # 136 "ctype_.c" 1645 | 1646 # 136 "ctype_.c" 3 4 1647 0x0008 1648 # 136 "ctype_.c" 1649 | 1650 # 136 "ctype_.c" 3 4 1651 0x0400 1652 # 136 "ctype_.c" 1653 | 1654 # 136 "ctype_.c" 3 4 1655 0x0080 1656 # 136 "ctype_.c" 1657 , 1658 # 136 "ctype_.c" 3 4 1659 0x0008 1660 # 136 "ctype_.c" 1661 | 1662 # 136 "ctype_.c" 3 4 1663 0x0400 1664 # 136 "ctype_.c" 1665 | 1666 # 136 "ctype_.c" 3 4 1667 0x0020 1668 # 136 "ctype_.c" 1669 , 1670 1671 # 137 "ctype_.c" 3 4 1672 0x0008 1673 # 137 "ctype_.c" 1674 | 1675 # 137 "ctype_.c" 3 4 1676 0x0400 1677 # 137 "ctype_.c" 1678 | 1679 # 137 "ctype_.c" 3 4 1680 0x0020 1681 # 137 "ctype_.c" 1682 , 1683 # 137 "ctype_.c" 3 4 1684 0x0008 1685 # 137 "ctype_.c" 1686 | 1687 # 137 "ctype_.c" 3 4 1688 0x0400 1689 # 137 "ctype_.c" 1690 | 1691 # 137 "ctype_.c" 3 4 1692 0x0020 1693 # 137 "ctype_.c" 1694 , 1695 # 137 "ctype_.c" 3 4 1696 0x0008 1697 # 137 "ctype_.c" 1698 | 1699 # 137 "ctype_.c" 3 4 1700 0x0400 1701 # 137 "ctype_.c" 1702 | 1703 # 137 "ctype_.c" 3 4 1704 0x0020 1705 # 137 "ctype_.c" 1706 , 1707 # 137 "ctype_.c" 3 4 1708 0x0008 1709 # 137 "ctype_.c" 1710 | 1711 # 137 "ctype_.c" 3 4 1712 0x0400 1713 # 137 "ctype_.c" 1714 | 1715 # 137 "ctype_.c" 3 4 1716 0x0020 1717 # 137 "ctype_.c" 1718 , 1719 1720 # 138 "ctype_.c" 3 4 1721 0x0008 1722 # 138 "ctype_.c" 1723 | 1724 # 138 "ctype_.c" 3 4 1725 0x0400 1726 # 138 "ctype_.c" 1727 | 1728 # 138 "ctype_.c" 3 4 1729 0x0020 1730 # 138 "ctype_.c" 1731 , 1732 # 138 "ctype_.c" 3 4 1733 0x0001 1734 # 138 "ctype_.c" 1735 | 1736 # 138 "ctype_.c" 3 4 1737 0x0008 1738 # 138 "ctype_.c" 1739 | 1740 # 138 "ctype_.c" 3 4 1741 0x0010 1742 # 138 "ctype_.c" 1743 | 1744 # 138 "ctype_.c" 3 4 1745 0x0400 1746 # 138 "ctype_.c" 1747 | 1748 # 138 "ctype_.c" 3 4 1749 0x0100 1750 # 138 "ctype_.c" 1751 , 1752 # 138 "ctype_.c" 3 4 1753 0x0001 1754 # 138 "ctype_.c" 1755 | 1756 # 138 "ctype_.c" 3 4 1757 0x0008 1758 # 138 "ctype_.c" 1759 | 1760 # 138 "ctype_.c" 3 4 1761 0x0010 1762 # 138 "ctype_.c" 1763 | 1764 # 138 "ctype_.c" 3 4 1765 0x0400 1766 # 138 "ctype_.c" 1767 | 1768 # 138 "ctype_.c" 3 4 1769 0x0100 1770 # 138 "ctype_.c" 1771 , 1772 # 138 "ctype_.c" 3 4 1773 0x0001 1774 # 138 "ctype_.c" 1775 | 1776 # 138 "ctype_.c" 3 4 1777 0x0008 1778 # 138 "ctype_.c" 1779 | 1780 # 138 "ctype_.c" 3 4 1781 0x0010 1782 # 138 "ctype_.c" 1783 | 1784 # 138 "ctype_.c" 3 4 1785 0x0400 1786 # 138 "ctype_.c" 1787 | 1788 # 138 "ctype_.c" 3 4 1789 0x0100 1790 # 138 "ctype_.c" 1791 , 1792 1793 # 139 "ctype_.c" 3 4 1794 0x0001 1795 # 139 "ctype_.c" 1796 | 1797 # 139 "ctype_.c" 3 4 1798 0x0008 1799 # 139 "ctype_.c" 1800 | 1801 # 139 "ctype_.c" 3 4 1802 0x0010 1803 # 139 "ctype_.c" 1804 | 1805 # 139 "ctype_.c" 3 4 1806 0x0400 1807 # 139 "ctype_.c" 1808 | 1809 # 139 "ctype_.c" 3 4 1810 0x0100 1811 # 139 "ctype_.c" 1812 , 1813 # 139 "ctype_.c" 3 4 1814 0x0001 1815 # 139 "ctype_.c" 1816 | 1817 # 139 "ctype_.c" 3 4 1818 0x0008 1819 # 139 "ctype_.c" 1820 | 1821 # 139 "ctype_.c" 3 4 1822 0x0010 1823 # 139 "ctype_.c" 1824 | 1825 # 139 "ctype_.c" 3 4 1826 0x0400 1827 # 139 "ctype_.c" 1828 | 1829 # 139 "ctype_.c" 3 4 1830 0x0100 1831 # 139 "ctype_.c" 1832 , 1833 # 139 "ctype_.c" 3 4 1834 0x0001 1835 # 139 "ctype_.c" 1836 | 1837 # 139 "ctype_.c" 3 4 1838 0x0008 1839 # 139 "ctype_.c" 1840 | 1841 # 139 "ctype_.c" 3 4 1842 0x0010 1843 # 139 "ctype_.c" 1844 | 1845 # 139 "ctype_.c" 3 4 1846 0x0400 1847 # 139 "ctype_.c" 1848 | 1849 # 139 "ctype_.c" 3 4 1850 0x0100 1851 # 139 "ctype_.c" 1852 , 1853 # 139 "ctype_.c" 3 4 1854 0x0001 1855 # 139 "ctype_.c" 1856 | 1857 # 139 "ctype_.c" 3 4 1858 0x0008 1859 # 139 "ctype_.c" 1860 | 1861 # 139 "ctype_.c" 3 4 1862 0x0010 1863 # 139 "ctype_.c" 1864 | 1865 # 139 "ctype_.c" 3 4 1866 0x0400 1867 # 139 "ctype_.c" 1868 , 1869 1870 # 140 "ctype_.c" 3 4 1871 0x0001 1872 # 140 "ctype_.c" 1873 | 1874 # 140 "ctype_.c" 3 4 1875 0x0008 1876 # 140 "ctype_.c" 1877 | 1878 # 140 "ctype_.c" 3 4 1879 0x0010 1880 # 140 "ctype_.c" 1881 | 1882 # 140 "ctype_.c" 3 4 1883 0x0400 1884 # 140 "ctype_.c" 1885 , 1886 # 140 "ctype_.c" 3 4 1887 0x0001 1888 # 140 "ctype_.c" 1889 | 1890 # 140 "ctype_.c" 3 4 1891 0x0008 1892 # 140 "ctype_.c" 1893 | 1894 # 140 "ctype_.c" 3 4 1895 0x0010 1896 # 140 "ctype_.c" 1897 | 1898 # 140 "ctype_.c" 3 4 1899 0x0400 1900 # 140 "ctype_.c" 1901 , 1902 # 140 "ctype_.c" 3 4 1903 0x0001 1904 # 140 "ctype_.c" 1905 | 1906 # 140 "ctype_.c" 3 4 1907 0x0008 1908 # 140 "ctype_.c" 1909 | 1910 # 140 "ctype_.c" 3 4 1911 0x0010 1912 # 140 "ctype_.c" 1913 | 1914 # 140 "ctype_.c" 3 4 1915 0x0400 1916 # 140 "ctype_.c" 1917 , 1918 # 140 "ctype_.c" 3 4 1919 0x0001 1920 # 140 "ctype_.c" 1921 | 1922 # 140 "ctype_.c" 3 4 1923 0x0008 1924 # 140 "ctype_.c" 1925 | 1926 # 140 "ctype_.c" 3 4 1927 0x0010 1928 # 140 "ctype_.c" 1929 | 1930 # 140 "ctype_.c" 3 4 1931 0x0400 1932 # 140 "ctype_.c" 1933 , 1934 1935 # 141 "ctype_.c" 3 4 1936 0x0001 1937 # 141 "ctype_.c" 1938 | 1939 # 141 "ctype_.c" 3 4 1940 0x0008 1941 # 141 "ctype_.c" 1942 | 1943 # 141 "ctype_.c" 3 4 1944 0x0010 1945 # 141 "ctype_.c" 1946 | 1947 # 141 "ctype_.c" 3 4 1948 0x0400 1949 # 141 "ctype_.c" 1950 , 1951 # 141 "ctype_.c" 3 4 1952 0x0001 1953 # 141 "ctype_.c" 1954 | 1955 # 141 "ctype_.c" 3 4 1956 0x0008 1957 # 141 "ctype_.c" 1958 | 1959 # 141 "ctype_.c" 3 4 1960 0x0010 1961 # 141 "ctype_.c" 1962 | 1963 # 141 "ctype_.c" 3 4 1964 0x0400 1965 # 141 "ctype_.c" 1966 , 1967 # 141 "ctype_.c" 3 4 1968 0x0001 1969 # 141 "ctype_.c" 1970 | 1971 # 141 "ctype_.c" 3 4 1972 0x0008 1973 # 141 "ctype_.c" 1974 | 1975 # 141 "ctype_.c" 3 4 1976 0x0010 1977 # 141 "ctype_.c" 1978 | 1979 # 141 "ctype_.c" 3 4 1980 0x0400 1981 # 141 "ctype_.c" 1982 , 1983 # 141 "ctype_.c" 3 4 1984 0x0001 1985 # 141 "ctype_.c" 1986 | 1987 # 141 "ctype_.c" 3 4 1988 0x0008 1989 # 141 "ctype_.c" 1990 | 1991 # 141 "ctype_.c" 3 4 1992 0x0010 1993 # 141 "ctype_.c" 1994 | 1995 # 141 "ctype_.c" 3 4 1996 0x0400 1997 # 141 "ctype_.c" 1998 , 1999 2000 # 142 "ctype_.c" 3 4 2001 0x0001 2002 # 142 "ctype_.c" 2003 | 2004 # 142 "ctype_.c" 3 4 2005 0x0008 2006 # 142 "ctype_.c" 2007 | 2008 # 142 "ctype_.c" 3 4 2009 0x0010 2010 # 142 "ctype_.c" 2011 | 2012 # 142 "ctype_.c" 3 4 2013 0x0400 2014 # 142 "ctype_.c" 2015 , 2016 # 142 "ctype_.c" 3 4 2017 0x0001 2018 # 142 "ctype_.c" 2019 | 2020 # 142 "ctype_.c" 3 4 2021 0x0008 2022 # 142 "ctype_.c" 2023 | 2024 # 142 "ctype_.c" 3 4 2025 0x0010 2026 # 142 "ctype_.c" 2027 | 2028 # 142 "ctype_.c" 3 4 2029 0x0400 2030 # 142 "ctype_.c" 2031 , 2032 # 142 "ctype_.c" 3 4 2033 0x0001 2034 # 142 "ctype_.c" 2035 | 2036 # 142 "ctype_.c" 3 4 2037 0x0008 2038 # 142 "ctype_.c" 2039 | 2040 # 142 "ctype_.c" 3 4 2041 0x0010 2042 # 142 "ctype_.c" 2043 | 2044 # 142 "ctype_.c" 3 4 2045 0x0400 2046 # 142 "ctype_.c" 2047 , 2048 # 142 "ctype_.c" 3 4 2049 0x0001 2050 # 142 "ctype_.c" 2051 | 2052 # 142 "ctype_.c" 3 4 2053 0x0008 2054 # 142 "ctype_.c" 2055 | 2056 # 142 "ctype_.c" 3 4 2057 0x0010 2058 # 142 "ctype_.c" 2059 | 2060 # 142 "ctype_.c" 3 4 2061 0x0400 2062 # 142 "ctype_.c" 2063 , 2064 2065 # 143 "ctype_.c" 3 4 2066 0x0001 2067 # 143 "ctype_.c" 2068 | 2069 # 143 "ctype_.c" 3 4 2070 0x0008 2071 # 143 "ctype_.c" 2072 | 2073 # 143 "ctype_.c" 3 4 2074 0x0010 2075 # 143 "ctype_.c" 2076 | 2077 # 143 "ctype_.c" 3 4 2078 0x0400 2079 # 143 "ctype_.c" 2080 , 2081 # 143 "ctype_.c" 3 4 2082 0x0001 2083 # 143 "ctype_.c" 2084 | 2085 # 143 "ctype_.c" 3 4 2086 0x0008 2087 # 143 "ctype_.c" 2088 | 2089 # 143 "ctype_.c" 3 4 2090 0x0010 2091 # 143 "ctype_.c" 2092 | 2093 # 143 "ctype_.c" 3 4 2094 0x0400 2095 # 143 "ctype_.c" 2096 , 2097 # 143 "ctype_.c" 3 4 2098 0x0001 2099 # 143 "ctype_.c" 2100 | 2101 # 143 "ctype_.c" 3 4 2102 0x0008 2103 # 143 "ctype_.c" 2104 | 2105 # 143 "ctype_.c" 3 4 2106 0x0010 2107 # 143 "ctype_.c" 2108 | 2109 # 143 "ctype_.c" 3 4 2110 0x0400 2111 # 143 "ctype_.c" 2112 , 2113 # 143 "ctype_.c" 3 4 2114 0x0001 2115 # 143 "ctype_.c" 2116 | 2117 # 143 "ctype_.c" 3 4 2118 0x0008 2119 # 143 "ctype_.c" 2120 | 2121 # 143 "ctype_.c" 3 4 2122 0x0010 2123 # 143 "ctype_.c" 2124 | 2125 # 143 "ctype_.c" 3 4 2126 0x0400 2127 # 143 "ctype_.c" 2128 , 2129 2130 # 144 "ctype_.c" 3 4 2131 0x0001 2132 # 144 "ctype_.c" 2133 | 2134 # 144 "ctype_.c" 3 4 2135 0x0008 2136 # 144 "ctype_.c" 2137 | 2138 # 144 "ctype_.c" 3 4 2139 0x0010 2140 # 144 "ctype_.c" 2141 | 2142 # 144 "ctype_.c" 3 4 2143 0x0400 2144 # 144 "ctype_.c" 2145 , 2146 # 144 "ctype_.c" 3 4 2147 0x0001 2148 # 144 "ctype_.c" 2149 | 2150 # 144 "ctype_.c" 3 4 2151 0x0008 2152 # 144 "ctype_.c" 2153 | 2154 # 144 "ctype_.c" 3 4 2155 0x0010 2156 # 144 "ctype_.c" 2157 | 2158 # 144 "ctype_.c" 3 4 2159 0x0400 2160 # 144 "ctype_.c" 2161 , 2162 # 144 "ctype_.c" 3 4 2163 0x0001 2164 # 144 "ctype_.c" 2165 | 2166 # 144 "ctype_.c" 3 4 2167 0x0008 2168 # 144 "ctype_.c" 2169 | 2170 # 144 "ctype_.c" 3 4 2171 0x0010 2172 # 144 "ctype_.c" 2173 | 2174 # 144 "ctype_.c" 3 4 2175 0x0400 2176 # 144 "ctype_.c" 2177 , 2178 # 144 "ctype_.c" 3 4 2179 0x0008 2180 # 144 "ctype_.c" 2181 | 2182 # 144 "ctype_.c" 3 4 2183 0x0400 2184 # 144 "ctype_.c" 2185 | 2186 # 144 "ctype_.c" 3 4 2187 0x0020 2188 # 144 "ctype_.c" 2189 , 2190 2191 # 145 "ctype_.c" 3 4 2192 0x0008 2193 # 145 "ctype_.c" 2194 | 2195 # 145 "ctype_.c" 3 4 2196 0x0400 2197 # 145 "ctype_.c" 2198 | 2199 # 145 "ctype_.c" 3 4 2200 0x0020 2201 # 145 "ctype_.c" 2202 , 2203 # 145 "ctype_.c" 3 4 2204 0x0008 2205 # 145 "ctype_.c" 2206 | 2207 # 145 "ctype_.c" 3 4 2208 0x0400 2209 # 145 "ctype_.c" 2210 | 2211 # 145 "ctype_.c" 3 4 2212 0x0020 2213 # 145 "ctype_.c" 2214 , 2215 # 145 "ctype_.c" 3 4 2216 0x0008 2217 # 145 "ctype_.c" 2218 | 2219 # 145 "ctype_.c" 3 4 2220 0x0400 2221 # 145 "ctype_.c" 2222 | 2223 # 145 "ctype_.c" 3 4 2224 0x0020 2225 # 145 "ctype_.c" 2226 , 2227 # 145 "ctype_.c" 3 4 2228 0x0002 2229 # 145 "ctype_.c" 2230 , 2231 }; 2232 # 160 "ctype_.c" 2233 const unsigned short *_ctype_tab_ = &_C_ctype_tab_[0];