Annotation of gpl/axl/babel/axl_babel_iso88596.c, revision 1.1
1.1 ! misho 1: /**
! 2: * Axl Babel: encoding support for axl: iso-8859-6 coding
! 3: * Copyright (C) 2008 Advanced Software Production Line, S.L.
! 4: */
! 5:
! 6: /* include base header */
! 7: #include <axl_babel_iso88596.h>
! 8:
! 9: /**
! 10: * @brief Creates the translation table for iso-8859-6 representation
! 11: * to move information from iso-8859-6 to utf-8 and viceversa.
! 12: */
! 13: axlBabelTable * axl_babel_build_iso88596_table (void) {
! 14:
! 15: axlBabelTable * table;
! 16:
! 17: /* create the table to hold information translate iso-8859-6 encoding */
! 18: table = axl_new (axlBabelTable, 256);
! 19:
! 20: /* store item associated to code 0 */
! 21: table[0].size = 1;
! 22: table[0].buffer[0] = (unsigned char) 0; /* 0x0 */
! 23:
! 24: /* store item associated to code 1 */
! 25: table[1].size = 1;
! 26: table[1].buffer[0] = (unsigned char) 1; /* 0x1 */
! 27:
! 28: /* store item associated to code 2 */
! 29: table[2].size = 1;
! 30: table[2].buffer[0] = (unsigned char) 2; /* 0x2 */
! 31:
! 32: /* store item associated to code 3 */
! 33: table[3].size = 1;
! 34: table[3].buffer[0] = (unsigned char) 3; /* 0x3 */
! 35:
! 36: /* store item associated to code 4 */
! 37: table[4].size = 1;
! 38: table[4].buffer[0] = (unsigned char) 4; /* 0x4 */
! 39:
! 40: /* store item associated to code 5 */
! 41: table[5].size = 1;
! 42: table[5].buffer[0] = (unsigned char) 5; /* 0x5 */
! 43:
! 44: /* store item associated to code 6 */
! 45: table[6].size = 1;
! 46: table[6].buffer[0] = (unsigned char) 6; /* 0x6 */
! 47:
! 48: /* store item associated to code 7 */
! 49: table[7].size = 1;
! 50: table[7].buffer[0] = (unsigned char) 7; /* 0x7 */
! 51:
! 52: /* store item associated to code 8 */
! 53: table[8].size = 1;
! 54: table[8].buffer[0] = (unsigned char) 8; /* 0x8 */
! 55:
! 56: /* store item associated to code 9 */
! 57: table[9].size = 1;
! 58: table[9].buffer[0] = (unsigned char) 9; /* 0x9 */
! 59:
! 60: /* store item associated to code 10 */
! 61: table[10].size = 1;
! 62: table[10].buffer[0] = (unsigned char) 10; /* 0xa */
! 63:
! 64: /* store item associated to code 11 */
! 65: table[11].size = 1;
! 66: table[11].buffer[0] = (unsigned char) 11; /* 0xb */
! 67:
! 68: /* store item associated to code 12 */
! 69: table[12].size = 1;
! 70: table[12].buffer[0] = (unsigned char) 12; /* 0xc */
! 71:
! 72: /* store item associated to code 13 */
! 73: table[13].size = 1;
! 74: table[13].buffer[0] = (unsigned char) 13; /* 0xd */
! 75:
! 76: /* store item associated to code 14 */
! 77: table[14].size = 1;
! 78: table[14].buffer[0] = (unsigned char) 14; /* 0xe */
! 79:
! 80: /* store item associated to code 15 */
! 81: table[15].size = 1;
! 82: table[15].buffer[0] = (unsigned char) 15; /* 0xf */
! 83:
! 84: /* store item associated to code 16 */
! 85: table[16].size = 1;
! 86: table[16].buffer[0] = (unsigned char) 16; /* 0x10 */
! 87:
! 88: /* store item associated to code 17 */
! 89: table[17].size = 1;
! 90: table[17].buffer[0] = (unsigned char) 17; /* 0x11 */
! 91:
! 92: /* store item associated to code 18 */
! 93: table[18].size = 1;
! 94: table[18].buffer[0] = (unsigned char) 18; /* 0x12 */
! 95:
! 96: /* store item associated to code 19 */
! 97: table[19].size = 1;
! 98: table[19].buffer[0] = (unsigned char) 19; /* 0x13 */
! 99:
! 100: /* store item associated to code 20 */
! 101: table[20].size = 1;
! 102: table[20].buffer[0] = (unsigned char) 20; /* 0x14 */
! 103:
! 104: /* store item associated to code 21 */
! 105: table[21].size = 1;
! 106: table[21].buffer[0] = (unsigned char) 21; /* 0x15 */
! 107:
! 108: /* store item associated to code 22 */
! 109: table[22].size = 1;
! 110: table[22].buffer[0] = (unsigned char) 22; /* 0x16 */
! 111:
! 112: /* store item associated to code 23 */
! 113: table[23].size = 1;
! 114: table[23].buffer[0] = (unsigned char) 23; /* 0x17 */
! 115:
! 116: /* store item associated to code 24 */
! 117: table[24].size = 1;
! 118: table[24].buffer[0] = (unsigned char) 24; /* 0x18 */
! 119:
! 120: /* store item associated to code 25 */
! 121: table[25].size = 1;
! 122: table[25].buffer[0] = (unsigned char) 25; /* 0x19 */
! 123:
! 124: /* store item associated to code 26 */
! 125: table[26].size = 1;
! 126: table[26].buffer[0] = (unsigned char) 26; /* 0x1a */
! 127:
! 128: /* store item associated to code 27 */
! 129: table[27].size = 1;
! 130: table[27].buffer[0] = (unsigned char) 27; /* 0x1b */
! 131:
! 132: /* store item associated to code 28 */
! 133: table[28].size = 1;
! 134: table[28].buffer[0] = (unsigned char) 28; /* 0x1c */
! 135:
! 136: /* store item associated to code 29 */
! 137: table[29].size = 1;
! 138: table[29].buffer[0] = (unsigned char) 29; /* 0x1d */
! 139:
! 140: /* store item associated to code 30 */
! 141: table[30].size = 1;
! 142: table[30].buffer[0] = (unsigned char) 30; /* 0x1e */
! 143:
! 144: /* store item associated to code 31 */
! 145: table[31].size = 1;
! 146: table[31].buffer[0] = (unsigned char) 31; /* 0x1f */
! 147:
! 148: /* store item associated to code 32 */
! 149: table[32].size = 1;
! 150: table[32].buffer[0] = (unsigned char) 32; /* 0x20 */
! 151:
! 152: /* store item associated to code 33 */
! 153: table[33].size = 1;
! 154: table[33].buffer[0] = (unsigned char) 33; /* 0x21 */
! 155:
! 156: /* store item associated to code 34 */
! 157: table[34].size = 1;
! 158: table[34].buffer[0] = (unsigned char) 34; /* 0x22 */
! 159:
! 160: /* store item associated to code 35 */
! 161: table[35].size = 1;
! 162: table[35].buffer[0] = (unsigned char) 35; /* 0x23 */
! 163:
! 164: /* store item associated to code 36 */
! 165: table[36].size = 1;
! 166: table[36].buffer[0] = (unsigned char) 36; /* 0x24 */
! 167:
! 168: /* store item associated to code 37 */
! 169: table[37].size = 1;
! 170: table[37].buffer[0] = (unsigned char) 37; /* 0x25 */
! 171:
! 172: /* store item associated to code 38 */
! 173: table[38].size = 1;
! 174: table[38].buffer[0] = (unsigned char) 38; /* 0x26 */
! 175:
! 176: /* store item associated to code 39 */
! 177: table[39].size = 1;
! 178: table[39].buffer[0] = (unsigned char) 39; /* 0x27 */
! 179:
! 180: /* store item associated to code 40 */
! 181: table[40].size = 1;
! 182: table[40].buffer[0] = (unsigned char) 40; /* 0x28 */
! 183:
! 184: /* store item associated to code 41 */
! 185: table[41].size = 1;
! 186: table[41].buffer[0] = (unsigned char) 41; /* 0x29 */
! 187:
! 188: /* store item associated to code 42 */
! 189: table[42].size = 1;
! 190: table[42].buffer[0] = (unsigned char) 42; /* 0x2a */
! 191:
! 192: /* store item associated to code 43 */
! 193: table[43].size = 1;
! 194: table[43].buffer[0] = (unsigned char) 43; /* 0x2b */
! 195:
! 196: /* store item associated to code 44 */
! 197: table[44].size = 1;
! 198: table[44].buffer[0] = (unsigned char) 44; /* 0x2c */
! 199:
! 200: /* store item associated to code 45 */
! 201: table[45].size = 1;
! 202: table[45].buffer[0] = (unsigned char) 45; /* 0x2d */
! 203:
! 204: /* store item associated to code 46 */
! 205: table[46].size = 1;
! 206: table[46].buffer[0] = (unsigned char) 46; /* 0x2e */
! 207:
! 208: /* store item associated to code 47 */
! 209: table[47].size = 1;
! 210: table[47].buffer[0] = (unsigned char) 47; /* 0x2f */
! 211:
! 212: /* store item associated to code 48 */
! 213: table[48].size = 1;
! 214: table[48].buffer[0] = (unsigned char) 48; /* 0x30 */
! 215:
! 216: /* store item associated to code 49 */
! 217: table[49].size = 1;
! 218: table[49].buffer[0] = (unsigned char) 49; /* 0x31 */
! 219:
! 220: /* store item associated to code 50 */
! 221: table[50].size = 1;
! 222: table[50].buffer[0] = (unsigned char) 50; /* 0x32 */
! 223:
! 224: /* store item associated to code 51 */
! 225: table[51].size = 1;
! 226: table[51].buffer[0] = (unsigned char) 51; /* 0x33 */
! 227:
! 228: /* store item associated to code 52 */
! 229: table[52].size = 1;
! 230: table[52].buffer[0] = (unsigned char) 52; /* 0x34 */
! 231:
! 232: /* store item associated to code 53 */
! 233: table[53].size = 1;
! 234: table[53].buffer[0] = (unsigned char) 53; /* 0x35 */
! 235:
! 236: /* store item associated to code 54 */
! 237: table[54].size = 1;
! 238: table[54].buffer[0] = (unsigned char) 54; /* 0x36 */
! 239:
! 240: /* store item associated to code 55 */
! 241: table[55].size = 1;
! 242: table[55].buffer[0] = (unsigned char) 55; /* 0x37 */
! 243:
! 244: /* store item associated to code 56 */
! 245: table[56].size = 1;
! 246: table[56].buffer[0] = (unsigned char) 56; /* 0x38 */
! 247:
! 248: /* store item associated to code 57 */
! 249: table[57].size = 1;
! 250: table[57].buffer[0] = (unsigned char) 57; /* 0x39 */
! 251:
! 252: /* store item associated to code 58 */
! 253: table[58].size = 1;
! 254: table[58].buffer[0] = (unsigned char) 58; /* 0x3a */
! 255:
! 256: /* store item associated to code 59 */
! 257: table[59].size = 1;
! 258: table[59].buffer[0] = (unsigned char) 59; /* 0x3b */
! 259:
! 260: /* store item associated to code 60 */
! 261: table[60].size = 1;
! 262: table[60].buffer[0] = (unsigned char) 60; /* 0x3c */
! 263:
! 264: /* store item associated to code 61 */
! 265: table[61].size = 1;
! 266: table[61].buffer[0] = (unsigned char) 61; /* 0x3d */
! 267:
! 268: /* store item associated to code 62 */
! 269: table[62].size = 1;
! 270: table[62].buffer[0] = (unsigned char) 62; /* 0x3e */
! 271:
! 272: /* store item associated to code 63 */
! 273: table[63].size = 1;
! 274: table[63].buffer[0] = (unsigned char) 63; /* 0x3f */
! 275:
! 276: /* store item associated to code 64 */
! 277: table[64].size = 1;
! 278: table[64].buffer[0] = (unsigned char) 64; /* 0x40 */
! 279:
! 280: /* store item associated to code 65 */
! 281: table[65].size = 1;
! 282: table[65].buffer[0] = (unsigned char) 65; /* 0x41 */
! 283:
! 284: /* store item associated to code 66 */
! 285: table[66].size = 1;
! 286: table[66].buffer[0] = (unsigned char) 66; /* 0x42 */
! 287:
! 288: /* store item associated to code 67 */
! 289: table[67].size = 1;
! 290: table[67].buffer[0] = (unsigned char) 67; /* 0x43 */
! 291:
! 292: /* store item associated to code 68 */
! 293: table[68].size = 1;
! 294: table[68].buffer[0] = (unsigned char) 68; /* 0x44 */
! 295:
! 296: /* store item associated to code 69 */
! 297: table[69].size = 1;
! 298: table[69].buffer[0] = (unsigned char) 69; /* 0x45 */
! 299:
! 300: /* store item associated to code 70 */
! 301: table[70].size = 1;
! 302: table[70].buffer[0] = (unsigned char) 70; /* 0x46 */
! 303:
! 304: /* store item associated to code 71 */
! 305: table[71].size = 1;
! 306: table[71].buffer[0] = (unsigned char) 71; /* 0x47 */
! 307:
! 308: /* store item associated to code 72 */
! 309: table[72].size = 1;
! 310: table[72].buffer[0] = (unsigned char) 72; /* 0x48 */
! 311:
! 312: /* store item associated to code 73 */
! 313: table[73].size = 1;
! 314: table[73].buffer[0] = (unsigned char) 73; /* 0x49 */
! 315:
! 316: /* store item associated to code 74 */
! 317: table[74].size = 1;
! 318: table[74].buffer[0] = (unsigned char) 74; /* 0x4a */
! 319:
! 320: /* store item associated to code 75 */
! 321: table[75].size = 1;
! 322: table[75].buffer[0] = (unsigned char) 75; /* 0x4b */
! 323:
! 324: /* store item associated to code 76 */
! 325: table[76].size = 1;
! 326: table[76].buffer[0] = (unsigned char) 76; /* 0x4c */
! 327:
! 328: /* store item associated to code 77 */
! 329: table[77].size = 1;
! 330: table[77].buffer[0] = (unsigned char) 77; /* 0x4d */
! 331:
! 332: /* store item associated to code 78 */
! 333: table[78].size = 1;
! 334: table[78].buffer[0] = (unsigned char) 78; /* 0x4e */
! 335:
! 336: /* store item associated to code 79 */
! 337: table[79].size = 1;
! 338: table[79].buffer[0] = (unsigned char) 79; /* 0x4f */
! 339:
! 340: /* store item associated to code 80 */
! 341: table[80].size = 1;
! 342: table[80].buffer[0] = (unsigned char) 80; /* 0x50 */
! 343:
! 344: /* store item associated to code 81 */
! 345: table[81].size = 1;
! 346: table[81].buffer[0] = (unsigned char) 81; /* 0x51 */
! 347:
! 348: /* store item associated to code 82 */
! 349: table[82].size = 1;
! 350: table[82].buffer[0] = (unsigned char) 82; /* 0x52 */
! 351:
! 352: /* store item associated to code 83 */
! 353: table[83].size = 1;
! 354: table[83].buffer[0] = (unsigned char) 83; /* 0x53 */
! 355:
! 356: /* store item associated to code 84 */
! 357: table[84].size = 1;
! 358: table[84].buffer[0] = (unsigned char) 84; /* 0x54 */
! 359:
! 360: /* store item associated to code 85 */
! 361: table[85].size = 1;
! 362: table[85].buffer[0] = (unsigned char) 85; /* 0x55 */
! 363:
! 364: /* store item associated to code 86 */
! 365: table[86].size = 1;
! 366: table[86].buffer[0] = (unsigned char) 86; /* 0x56 */
! 367:
! 368: /* store item associated to code 87 */
! 369: table[87].size = 1;
! 370: table[87].buffer[0] = (unsigned char) 87; /* 0x57 */
! 371:
! 372: /* store item associated to code 88 */
! 373: table[88].size = 1;
! 374: table[88].buffer[0] = (unsigned char) 88; /* 0x58 */
! 375:
! 376: /* store item associated to code 89 */
! 377: table[89].size = 1;
! 378: table[89].buffer[0] = (unsigned char) 89; /* 0x59 */
! 379:
! 380: /* store item associated to code 90 */
! 381: table[90].size = 1;
! 382: table[90].buffer[0] = (unsigned char) 90; /* 0x5a */
! 383:
! 384: /* store item associated to code 91 */
! 385: table[91].size = 1;
! 386: table[91].buffer[0] = (unsigned char) 91; /* 0x5b */
! 387:
! 388: /* store item associated to code 92 */
! 389: table[92].size = 1;
! 390: table[92].buffer[0] = (unsigned char) 92; /* 0x5c */
! 391:
! 392: /* store item associated to code 93 */
! 393: table[93].size = 1;
! 394: table[93].buffer[0] = (unsigned char) 93; /* 0x5d */
! 395:
! 396: /* store item associated to code 94 */
! 397: table[94].size = 1;
! 398: table[94].buffer[0] = (unsigned char) 94; /* 0x5e */
! 399:
! 400: /* store item associated to code 95 */
! 401: table[95].size = 1;
! 402: table[95].buffer[0] = (unsigned char) 95; /* 0x5f */
! 403:
! 404: /* store item associated to code 96 */
! 405: table[96].size = 1;
! 406: table[96].buffer[0] = (unsigned char) 96; /* 0x60 */
! 407:
! 408: /* store item associated to code 97 */
! 409: table[97].size = 1;
! 410: table[97].buffer[0] = (unsigned char) 97; /* 0x61 */
! 411:
! 412: /* store item associated to code 98 */
! 413: table[98].size = 1;
! 414: table[98].buffer[0] = (unsigned char) 98; /* 0x62 */
! 415:
! 416: /* store item associated to code 99 */
! 417: table[99].size = 1;
! 418: table[99].buffer[0] = (unsigned char) 99; /* 0x63 */
! 419:
! 420: /* store item associated to code 100 */
! 421: table[100].size = 1;
! 422: table[100].buffer[0] = (unsigned char) 100; /* 0x64 */
! 423:
! 424: /* store item associated to code 101 */
! 425: table[101].size = 1;
! 426: table[101].buffer[0] = (unsigned char) 101; /* 0x65 */
! 427:
! 428: /* store item associated to code 102 */
! 429: table[102].size = 1;
! 430: table[102].buffer[0] = (unsigned char) 102; /* 0x66 */
! 431:
! 432: /* store item associated to code 103 */
! 433: table[103].size = 1;
! 434: table[103].buffer[0] = (unsigned char) 103; /* 0x67 */
! 435:
! 436: /* store item associated to code 104 */
! 437: table[104].size = 1;
! 438: table[104].buffer[0] = (unsigned char) 104; /* 0x68 */
! 439:
! 440: /* store item associated to code 105 */
! 441: table[105].size = 1;
! 442: table[105].buffer[0] = (unsigned char) 105; /* 0x69 */
! 443:
! 444: /* store item associated to code 106 */
! 445: table[106].size = 1;
! 446: table[106].buffer[0] = (unsigned char) 106; /* 0x6a */
! 447:
! 448: /* store item associated to code 107 */
! 449: table[107].size = 1;
! 450: table[107].buffer[0] = (unsigned char) 107; /* 0x6b */
! 451:
! 452: /* store item associated to code 108 */
! 453: table[108].size = 1;
! 454: table[108].buffer[0] = (unsigned char) 108; /* 0x6c */
! 455:
! 456: /* store item associated to code 109 */
! 457: table[109].size = 1;
! 458: table[109].buffer[0] = (unsigned char) 109; /* 0x6d */
! 459:
! 460: /* store item associated to code 110 */
! 461: table[110].size = 1;
! 462: table[110].buffer[0] = (unsigned char) 110; /* 0x6e */
! 463:
! 464: /* store item associated to code 111 */
! 465: table[111].size = 1;
! 466: table[111].buffer[0] = (unsigned char) 111; /* 0x6f */
! 467:
! 468: /* store item associated to code 112 */
! 469: table[112].size = 1;
! 470: table[112].buffer[0] = (unsigned char) 112; /* 0x70 */
! 471:
! 472: /* store item associated to code 113 */
! 473: table[113].size = 1;
! 474: table[113].buffer[0] = (unsigned char) 113; /* 0x71 */
! 475:
! 476: /* store item associated to code 114 */
! 477: table[114].size = 1;
! 478: table[114].buffer[0] = (unsigned char) 114; /* 0x72 */
! 479:
! 480: /* store item associated to code 115 */
! 481: table[115].size = 1;
! 482: table[115].buffer[0] = (unsigned char) 115; /* 0x73 */
! 483:
! 484: /* store item associated to code 116 */
! 485: table[116].size = 1;
! 486: table[116].buffer[0] = (unsigned char) 116; /* 0x74 */
! 487:
! 488: /* store item associated to code 117 */
! 489: table[117].size = 1;
! 490: table[117].buffer[0] = (unsigned char) 117; /* 0x75 */
! 491:
! 492: /* store item associated to code 118 */
! 493: table[118].size = 1;
! 494: table[118].buffer[0] = (unsigned char) 118; /* 0x76 */
! 495:
! 496: /* store item associated to code 119 */
! 497: table[119].size = 1;
! 498: table[119].buffer[0] = (unsigned char) 119; /* 0x77 */
! 499:
! 500: /* store item associated to code 120 */
! 501: table[120].size = 1;
! 502: table[120].buffer[0] = (unsigned char) 120; /* 0x78 */
! 503:
! 504: /* store item associated to code 121 */
! 505: table[121].size = 1;
! 506: table[121].buffer[0] = (unsigned char) 121; /* 0x79 */
! 507:
! 508: /* store item associated to code 122 */
! 509: table[122].size = 1;
! 510: table[122].buffer[0] = (unsigned char) 122; /* 0x7a */
! 511:
! 512: /* store item associated to code 123 */
! 513: table[123].size = 1;
! 514: table[123].buffer[0] = (unsigned char) 123; /* 0x7b */
! 515:
! 516: /* store item associated to code 124 */
! 517: table[124].size = 1;
! 518: table[124].buffer[0] = (unsigned char) 124; /* 0x7c */
! 519:
! 520: /* store item associated to code 125 */
! 521: table[125].size = 1;
! 522: table[125].buffer[0] = (unsigned char) 125; /* 0x7d */
! 523:
! 524: /* store item associated to code 126 */
! 525: table[126].size = 1;
! 526: table[126].buffer[0] = (unsigned char) 126; /* 0x7e */
! 527:
! 528: /* store item associated to code 127 */
! 529: table[127].size = 1;
! 530: table[127].buffer[0] = (unsigned char) 127; /* 0x7f */
! 531:
! 532: /* store item associated to code 128 */
! 533: table[128].size = 2;
! 534: table[128].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 535: table[128].buffer[1] = (unsigned char) 128; /* 0x80 */
! 536:
! 537: /* store item associated to code 129 */
! 538: table[129].size = 2;
! 539: table[129].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 540: table[129].buffer[1] = (unsigned char) 129; /* 0x81 */
! 541:
! 542: /* store item associated to code 130 */
! 543: table[130].size = 2;
! 544: table[130].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 545: table[130].buffer[1] = (unsigned char) 130; /* 0x82 */
! 546:
! 547: /* store item associated to code 131 */
! 548: table[131].size = 2;
! 549: table[131].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 550: table[131].buffer[1] = (unsigned char) 131; /* 0x83 */
! 551:
! 552: /* store item associated to code 132 */
! 553: table[132].size = 2;
! 554: table[132].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 555: table[132].buffer[1] = (unsigned char) 132; /* 0x84 */
! 556:
! 557: /* store item associated to code 133 */
! 558: table[133].size = 2;
! 559: table[133].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 560: table[133].buffer[1] = (unsigned char) 133; /* 0x85 */
! 561:
! 562: /* store item associated to code 134 */
! 563: table[134].size = 2;
! 564: table[134].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 565: table[134].buffer[1] = (unsigned char) 134; /* 0x86 */
! 566:
! 567: /* store item associated to code 135 */
! 568: table[135].size = 2;
! 569: table[135].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 570: table[135].buffer[1] = (unsigned char) 135; /* 0x87 */
! 571:
! 572: /* store item associated to code 136 */
! 573: table[136].size = 2;
! 574: table[136].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 575: table[136].buffer[1] = (unsigned char) 136; /* 0x88 */
! 576:
! 577: /* store item associated to code 137 */
! 578: table[137].size = 2;
! 579: table[137].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 580: table[137].buffer[1] = (unsigned char) 137; /* 0x89 */
! 581:
! 582: /* store item associated to code 138 */
! 583: table[138].size = 2;
! 584: table[138].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 585: table[138].buffer[1] = (unsigned char) 138; /* 0x8a */
! 586:
! 587: /* store item associated to code 139 */
! 588: table[139].size = 2;
! 589: table[139].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 590: table[139].buffer[1] = (unsigned char) 139; /* 0x8b */
! 591:
! 592: /* store item associated to code 140 */
! 593: table[140].size = 2;
! 594: table[140].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 595: table[140].buffer[1] = (unsigned char) 140; /* 0x8c */
! 596:
! 597: /* store item associated to code 141 */
! 598: table[141].size = 2;
! 599: table[141].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 600: table[141].buffer[1] = (unsigned char) 141; /* 0x8d */
! 601:
! 602: /* store item associated to code 142 */
! 603: table[142].size = 2;
! 604: table[142].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 605: table[142].buffer[1] = (unsigned char) 142; /* 0x8e */
! 606:
! 607: /* store item associated to code 143 */
! 608: table[143].size = 2;
! 609: table[143].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 610: table[143].buffer[1] = (unsigned char) 143; /* 0x8f */
! 611:
! 612: /* store item associated to code 144 */
! 613: table[144].size = 2;
! 614: table[144].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 615: table[144].buffer[1] = (unsigned char) 144; /* 0x90 */
! 616:
! 617: /* store item associated to code 145 */
! 618: table[145].size = 2;
! 619: table[145].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 620: table[145].buffer[1] = (unsigned char) 145; /* 0x91 */
! 621:
! 622: /* store item associated to code 146 */
! 623: table[146].size = 2;
! 624: table[146].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 625: table[146].buffer[1] = (unsigned char) 146; /* 0x92 */
! 626:
! 627: /* store item associated to code 147 */
! 628: table[147].size = 2;
! 629: table[147].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 630: table[147].buffer[1] = (unsigned char) 147; /* 0x93 */
! 631:
! 632: /* store item associated to code 148 */
! 633: table[148].size = 2;
! 634: table[148].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 635: table[148].buffer[1] = (unsigned char) 148; /* 0x94 */
! 636:
! 637: /* store item associated to code 149 */
! 638: table[149].size = 2;
! 639: table[149].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 640: table[149].buffer[1] = (unsigned char) 149; /* 0x95 */
! 641:
! 642: /* store item associated to code 150 */
! 643: table[150].size = 2;
! 644: table[150].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 645: table[150].buffer[1] = (unsigned char) 150; /* 0x96 */
! 646:
! 647: /* store item associated to code 151 */
! 648: table[151].size = 2;
! 649: table[151].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 650: table[151].buffer[1] = (unsigned char) 151; /* 0x97 */
! 651:
! 652: /* store item associated to code 152 */
! 653: table[152].size = 2;
! 654: table[152].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 655: table[152].buffer[1] = (unsigned char) 152; /* 0x98 */
! 656:
! 657: /* store item associated to code 153 */
! 658: table[153].size = 2;
! 659: table[153].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 660: table[153].buffer[1] = (unsigned char) 153; /* 0x99 */
! 661:
! 662: /* store item associated to code 154 */
! 663: table[154].size = 2;
! 664: table[154].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 665: table[154].buffer[1] = (unsigned char) 154; /* 0x9a */
! 666:
! 667: /* store item associated to code 155 */
! 668: table[155].size = 2;
! 669: table[155].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 670: table[155].buffer[1] = (unsigned char) 155; /* 0x9b */
! 671:
! 672: /* store item associated to code 156 */
! 673: table[156].size = 2;
! 674: table[156].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 675: table[156].buffer[1] = (unsigned char) 156; /* 0x9c */
! 676:
! 677: /* store item associated to code 157 */
! 678: table[157].size = 2;
! 679: table[157].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 680: table[157].buffer[1] = (unsigned char) 157; /* 0x9d */
! 681:
! 682: /* store item associated to code 158 */
! 683: table[158].size = 2;
! 684: table[158].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 685: table[158].buffer[1] = (unsigned char) 158; /* 0x9e */
! 686:
! 687: /* store item associated to code 159 */
! 688: table[159].size = 2;
! 689: table[159].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 690: table[159].buffer[1] = (unsigned char) 159; /* 0x9f */
! 691:
! 692: /* store item associated to code 160 */
! 693: table[160].size = 2;
! 694: table[160].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 695: table[160].buffer[1] = (unsigned char) 160; /* 0xa0 */
! 696:
! 697: /* store item associated to code 161 */
! 698: table[161].size = 1;
! 699: table[161].buffer[0] = 0; /* unsupported translation */
! 700:
! 701: /* store item associated to code 162 */
! 702: table[162].size = 1;
! 703: table[162].buffer[0] = 0; /* unsupported translation */
! 704:
! 705: /* store item associated to code 163 */
! 706: table[163].size = 1;
! 707: table[163].buffer[0] = 0; /* unsupported translation */
! 708:
! 709: /* store item associated to code 164 */
! 710: table[164].size = 2;
! 711: table[164].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 712: table[164].buffer[1] = (unsigned char) 164; /* 0xa4 */
! 713:
! 714: /* store item associated to code 165 */
! 715: table[165].size = 1;
! 716: table[165].buffer[0] = 0; /* unsupported translation */
! 717:
! 718: /* store item associated to code 166 */
! 719: table[166].size = 1;
! 720: table[166].buffer[0] = 0; /* unsupported translation */
! 721:
! 722: /* store item associated to code 167 */
! 723: table[167].size = 1;
! 724: table[167].buffer[0] = 0; /* unsupported translation */
! 725:
! 726: /* store item associated to code 168 */
! 727: table[168].size = 1;
! 728: table[168].buffer[0] = 0; /* unsupported translation */
! 729:
! 730: /* store item associated to code 169 */
! 731: table[169].size = 1;
! 732: table[169].buffer[0] = 0; /* unsupported translation */
! 733:
! 734: /* store item associated to code 170 */
! 735: table[170].size = 1;
! 736: table[170].buffer[0] = 0; /* unsupported translation */
! 737:
! 738: /* store item associated to code 171 */
! 739: table[171].size = 1;
! 740: table[171].buffer[0] = 0; /* unsupported translation */
! 741:
! 742: /* store item associated to code 172 */
! 743: table[172].size = 2;
! 744: table[172].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 745: table[172].buffer[1] = (unsigned char) 140; /* 0x8c */
! 746:
! 747: /* store item associated to code 173 */
! 748: table[173].size = 2;
! 749: table[173].buffer[0] = (unsigned char) 194; /* 0xc2 */
! 750: table[173].buffer[1] = (unsigned char) 173; /* 0xad */
! 751:
! 752: /* store item associated to code 174 */
! 753: table[174].size = 1;
! 754: table[174].buffer[0] = 0; /* unsupported translation */
! 755:
! 756: /* store item associated to code 175 */
! 757: table[175].size = 1;
! 758: table[175].buffer[0] = 0; /* unsupported translation */
! 759:
! 760: /* store item associated to code 176 */
! 761: table[176].size = 1;
! 762: table[176].buffer[0] = 0; /* unsupported translation */
! 763:
! 764: /* store item associated to code 177 */
! 765: table[177].size = 1;
! 766: table[177].buffer[0] = 0; /* unsupported translation */
! 767:
! 768: /* store item associated to code 178 */
! 769: table[178].size = 1;
! 770: table[178].buffer[0] = 0; /* unsupported translation */
! 771:
! 772: /* store item associated to code 179 */
! 773: table[179].size = 1;
! 774: table[179].buffer[0] = 0; /* unsupported translation */
! 775:
! 776: /* store item associated to code 180 */
! 777: table[180].size = 1;
! 778: table[180].buffer[0] = 0; /* unsupported translation */
! 779:
! 780: /* store item associated to code 181 */
! 781: table[181].size = 1;
! 782: table[181].buffer[0] = 0; /* unsupported translation */
! 783:
! 784: /* store item associated to code 182 */
! 785: table[182].size = 1;
! 786: table[182].buffer[0] = 0; /* unsupported translation */
! 787:
! 788: /* store item associated to code 183 */
! 789: table[183].size = 1;
! 790: table[183].buffer[0] = 0; /* unsupported translation */
! 791:
! 792: /* store item associated to code 184 */
! 793: table[184].size = 1;
! 794: table[184].buffer[0] = 0; /* unsupported translation */
! 795:
! 796: /* store item associated to code 185 */
! 797: table[185].size = 1;
! 798: table[185].buffer[0] = 0; /* unsupported translation */
! 799:
! 800: /* store item associated to code 186 */
! 801: table[186].size = 1;
! 802: table[186].buffer[0] = 0; /* unsupported translation */
! 803:
! 804: /* store item associated to code 187 */
! 805: table[187].size = 2;
! 806: table[187].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 807: table[187].buffer[1] = (unsigned char) 155; /* 0x9b */
! 808:
! 809: /* store item associated to code 188 */
! 810: table[188].size = 1;
! 811: table[188].buffer[0] = 0; /* unsupported translation */
! 812:
! 813: /* store item associated to code 189 */
! 814: table[189].size = 1;
! 815: table[189].buffer[0] = 0; /* unsupported translation */
! 816:
! 817: /* store item associated to code 190 */
! 818: table[190].size = 1;
! 819: table[190].buffer[0] = 0; /* unsupported translation */
! 820:
! 821: /* store item associated to code 191 */
! 822: table[191].size = 2;
! 823: table[191].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 824: table[191].buffer[1] = (unsigned char) 159; /* 0x9f */
! 825:
! 826: /* store item associated to code 192 */
! 827: table[192].size = 1;
! 828: table[192].buffer[0] = 0; /* unsupported translation */
! 829:
! 830: /* store item associated to code 193 */
! 831: table[193].size = 2;
! 832: table[193].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 833: table[193].buffer[1] = (unsigned char) 161; /* 0xa1 */
! 834:
! 835: /* store item associated to code 194 */
! 836: table[194].size = 2;
! 837: table[194].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 838: table[194].buffer[1] = (unsigned char) 162; /* 0xa2 */
! 839:
! 840: /* store item associated to code 195 */
! 841: table[195].size = 2;
! 842: table[195].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 843: table[195].buffer[1] = (unsigned char) 163; /* 0xa3 */
! 844:
! 845: /* store item associated to code 196 */
! 846: table[196].size = 2;
! 847: table[196].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 848: table[196].buffer[1] = (unsigned char) 164; /* 0xa4 */
! 849:
! 850: /* store item associated to code 197 */
! 851: table[197].size = 2;
! 852: table[197].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 853: table[197].buffer[1] = (unsigned char) 165; /* 0xa5 */
! 854:
! 855: /* store item associated to code 198 */
! 856: table[198].size = 2;
! 857: table[198].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 858: table[198].buffer[1] = (unsigned char) 166; /* 0xa6 */
! 859:
! 860: /* store item associated to code 199 */
! 861: table[199].size = 2;
! 862: table[199].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 863: table[199].buffer[1] = (unsigned char) 167; /* 0xa7 */
! 864:
! 865: /* store item associated to code 200 */
! 866: table[200].size = 2;
! 867: table[200].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 868: table[200].buffer[1] = (unsigned char) 168; /* 0xa8 */
! 869:
! 870: /* store item associated to code 201 */
! 871: table[201].size = 2;
! 872: table[201].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 873: table[201].buffer[1] = (unsigned char) 169; /* 0xa9 */
! 874:
! 875: /* store item associated to code 202 */
! 876: table[202].size = 2;
! 877: table[202].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 878: table[202].buffer[1] = (unsigned char) 170; /* 0xaa */
! 879:
! 880: /* store item associated to code 203 */
! 881: table[203].size = 2;
! 882: table[203].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 883: table[203].buffer[1] = (unsigned char) 171; /* 0xab */
! 884:
! 885: /* store item associated to code 204 */
! 886: table[204].size = 2;
! 887: table[204].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 888: table[204].buffer[1] = (unsigned char) 172; /* 0xac */
! 889:
! 890: /* store item associated to code 205 */
! 891: table[205].size = 2;
! 892: table[205].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 893: table[205].buffer[1] = (unsigned char) 173; /* 0xad */
! 894:
! 895: /* store item associated to code 206 */
! 896: table[206].size = 2;
! 897: table[206].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 898: table[206].buffer[1] = (unsigned char) 174; /* 0xae */
! 899:
! 900: /* store item associated to code 207 */
! 901: table[207].size = 2;
! 902: table[207].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 903: table[207].buffer[1] = (unsigned char) 175; /* 0xaf */
! 904:
! 905: /* store item associated to code 208 */
! 906: table[208].size = 2;
! 907: table[208].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 908: table[208].buffer[1] = (unsigned char) 176; /* 0xb0 */
! 909:
! 910: /* store item associated to code 209 */
! 911: table[209].size = 2;
! 912: table[209].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 913: table[209].buffer[1] = (unsigned char) 177; /* 0xb1 */
! 914:
! 915: /* store item associated to code 210 */
! 916: table[210].size = 2;
! 917: table[210].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 918: table[210].buffer[1] = (unsigned char) 178; /* 0xb2 */
! 919:
! 920: /* store item associated to code 211 */
! 921: table[211].size = 2;
! 922: table[211].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 923: table[211].buffer[1] = (unsigned char) 179; /* 0xb3 */
! 924:
! 925: /* store item associated to code 212 */
! 926: table[212].size = 2;
! 927: table[212].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 928: table[212].buffer[1] = (unsigned char) 180; /* 0xb4 */
! 929:
! 930: /* store item associated to code 213 */
! 931: table[213].size = 2;
! 932: table[213].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 933: table[213].buffer[1] = (unsigned char) 181; /* 0xb5 */
! 934:
! 935: /* store item associated to code 214 */
! 936: table[214].size = 2;
! 937: table[214].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 938: table[214].buffer[1] = (unsigned char) 182; /* 0xb6 */
! 939:
! 940: /* store item associated to code 215 */
! 941: table[215].size = 2;
! 942: table[215].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 943: table[215].buffer[1] = (unsigned char) 183; /* 0xb7 */
! 944:
! 945: /* store item associated to code 216 */
! 946: table[216].size = 2;
! 947: table[216].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 948: table[216].buffer[1] = (unsigned char) 184; /* 0xb8 */
! 949:
! 950: /* store item associated to code 217 */
! 951: table[217].size = 2;
! 952: table[217].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 953: table[217].buffer[1] = (unsigned char) 185; /* 0xb9 */
! 954:
! 955: /* store item associated to code 218 */
! 956: table[218].size = 2;
! 957: table[218].buffer[0] = (unsigned char) 216; /* 0xd8 */
! 958: table[218].buffer[1] = (unsigned char) 186; /* 0xba */
! 959:
! 960: /* store item associated to code 219 */
! 961: table[219].size = 1;
! 962: table[219].buffer[0] = 0; /* unsupported translation */
! 963:
! 964: /* store item associated to code 220 */
! 965: table[220].size = 1;
! 966: table[220].buffer[0] = 0; /* unsupported translation */
! 967:
! 968: /* store item associated to code 221 */
! 969: table[221].size = 1;
! 970: table[221].buffer[0] = 0; /* unsupported translation */
! 971:
! 972: /* store item associated to code 222 */
! 973: table[222].size = 1;
! 974: table[222].buffer[0] = 0; /* unsupported translation */
! 975:
! 976: /* store item associated to code 223 */
! 977: table[223].size = 1;
! 978: table[223].buffer[0] = 0; /* unsupported translation */
! 979:
! 980: /* store item associated to code 224 */
! 981: table[224].size = 2;
! 982: table[224].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 983: table[224].buffer[1] = (unsigned char) 128; /* 0x80 */
! 984:
! 985: /* store item associated to code 225 */
! 986: table[225].size = 2;
! 987: table[225].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 988: table[225].buffer[1] = (unsigned char) 129; /* 0x81 */
! 989:
! 990: /* store item associated to code 226 */
! 991: table[226].size = 2;
! 992: table[226].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 993: table[226].buffer[1] = (unsigned char) 130; /* 0x82 */
! 994:
! 995: /* store item associated to code 227 */
! 996: table[227].size = 2;
! 997: table[227].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 998: table[227].buffer[1] = (unsigned char) 131; /* 0x83 */
! 999:
! 1000: /* store item associated to code 228 */
! 1001: table[228].size = 2;
! 1002: table[228].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1003: table[228].buffer[1] = (unsigned char) 132; /* 0x84 */
! 1004:
! 1005: /* store item associated to code 229 */
! 1006: table[229].size = 2;
! 1007: table[229].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1008: table[229].buffer[1] = (unsigned char) 133; /* 0x85 */
! 1009:
! 1010: /* store item associated to code 230 */
! 1011: table[230].size = 2;
! 1012: table[230].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1013: table[230].buffer[1] = (unsigned char) 134; /* 0x86 */
! 1014:
! 1015: /* store item associated to code 231 */
! 1016: table[231].size = 2;
! 1017: table[231].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1018: table[231].buffer[1] = (unsigned char) 135; /* 0x87 */
! 1019:
! 1020: /* store item associated to code 232 */
! 1021: table[232].size = 2;
! 1022: table[232].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1023: table[232].buffer[1] = (unsigned char) 136; /* 0x88 */
! 1024:
! 1025: /* store item associated to code 233 */
! 1026: table[233].size = 2;
! 1027: table[233].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1028: table[233].buffer[1] = (unsigned char) 137; /* 0x89 */
! 1029:
! 1030: /* store item associated to code 234 */
! 1031: table[234].size = 2;
! 1032: table[234].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1033: table[234].buffer[1] = (unsigned char) 138; /* 0x8a */
! 1034:
! 1035: /* store item associated to code 235 */
! 1036: table[235].size = 2;
! 1037: table[235].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1038: table[235].buffer[1] = (unsigned char) 139; /* 0x8b */
! 1039:
! 1040: /* store item associated to code 236 */
! 1041: table[236].size = 2;
! 1042: table[236].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1043: table[236].buffer[1] = (unsigned char) 140; /* 0x8c */
! 1044:
! 1045: /* store item associated to code 237 */
! 1046: table[237].size = 2;
! 1047: table[237].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1048: table[237].buffer[1] = (unsigned char) 141; /* 0x8d */
! 1049:
! 1050: /* store item associated to code 238 */
! 1051: table[238].size = 2;
! 1052: table[238].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1053: table[238].buffer[1] = (unsigned char) 142; /* 0x8e */
! 1054:
! 1055: /* store item associated to code 239 */
! 1056: table[239].size = 2;
! 1057: table[239].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1058: table[239].buffer[1] = (unsigned char) 143; /* 0x8f */
! 1059:
! 1060: /* store item associated to code 240 */
! 1061: table[240].size = 2;
! 1062: table[240].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1063: table[240].buffer[1] = (unsigned char) 144; /* 0x90 */
! 1064:
! 1065: /* store item associated to code 241 */
! 1066: table[241].size = 2;
! 1067: table[241].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1068: table[241].buffer[1] = (unsigned char) 145; /* 0x91 */
! 1069:
! 1070: /* store item associated to code 242 */
! 1071: table[242].size = 2;
! 1072: table[242].buffer[0] = (unsigned char) 217; /* 0xd9 */
! 1073: table[242].buffer[1] = (unsigned char) 146; /* 0x92 */
! 1074:
! 1075: /* store item associated to code 243 */
! 1076: table[243].size = 1;
! 1077: table[243].buffer[0] = 0; /* unsupported translation */
! 1078:
! 1079: /* store item associated to code 244 */
! 1080: table[244].size = 1;
! 1081: table[244].buffer[0] = 0; /* unsupported translation */
! 1082:
! 1083: /* store item associated to code 245 */
! 1084: table[245].size = 1;
! 1085: table[245].buffer[0] = 0; /* unsupported translation */
! 1086:
! 1087: /* store item associated to code 246 */
! 1088: table[246].size = 1;
! 1089: table[246].buffer[0] = 0; /* unsupported translation */
! 1090:
! 1091: /* store item associated to code 247 */
! 1092: table[247].size = 1;
! 1093: table[247].buffer[0] = 0; /* unsupported translation */
! 1094:
! 1095: /* store item associated to code 248 */
! 1096: table[248].size = 1;
! 1097: table[248].buffer[0] = 0; /* unsupported translation */
! 1098:
! 1099: /* store item associated to code 249 */
! 1100: table[249].size = 1;
! 1101: table[249].buffer[0] = 0; /* unsupported translation */
! 1102:
! 1103: /* store item associated to code 250 */
! 1104: table[250].size = 1;
! 1105: table[250].buffer[0] = 0; /* unsupported translation */
! 1106:
! 1107: /* store item associated to code 251 */
! 1108: table[251].size = 1;
! 1109: table[251].buffer[0] = 0; /* unsupported translation */
! 1110:
! 1111: /* store item associated to code 252 */
! 1112: table[252].size = 1;
! 1113: table[252].buffer[0] = 0; /* unsupported translation */
! 1114:
! 1115: /* store item associated to code 253 */
! 1116: table[253].size = 1;
! 1117: table[253].buffer[0] = 0; /* unsupported translation */
! 1118:
! 1119: /* store item associated to code 254 */
! 1120: table[254].size = 1;
! 1121: table[254].buffer[0] = 0; /* unsupported translation */
! 1122:
! 1123: /* store item associated to code 255 */
! 1124: table[255].size = 1;
! 1125: table[255].buffer[0] = 0; /* unsupported translation */
! 1126:
! 1127: /* return table created */
! 1128: return table;
! 1129:
! 1130: } /* end axl_babel_build_iso88596_table */
! 1131:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>