Annotation of gpl/axl/babel/axl_babel_iso885915.c, revision 1.1.1.1

1.1       misho       1: /**
                      2:  * Axl Babel: encoding support for axl: iso-8859-15 coding
                      3:  * Copyright (C) 2008 Advanced Software Production Line, S.L.
                      4:  */
                      5: 
                      6: /* include base header */
                      7: #include <axl_babel_iso885915.h>
                      8: 
                      9: /**
                     10:  * @brief Creates the translation table for iso-8859-15 representation
                     11:  *  to move information from iso-8859-15 to utf-8 and viceversa.
                     12:  */
                     13: axlBabelTable * axl_babel_build_iso885915_table (void) {
                     14: 
                     15:        axlBabelTable * table;
                     16: 
                     17:        /* create the table to hold information translate iso-8859-15 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      = 2;
                    699:        table[161].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    700:        table[161].buffer[1] = (unsigned char) 161; /* 0xa1 */
                    701: 
                    702:        /* store item associated to code 162 */
                    703:        table[162].size      = 2;
                    704:        table[162].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    705:        table[162].buffer[1] = (unsigned char) 162; /* 0xa2 */
                    706: 
                    707:        /* store item associated to code 163 */
                    708:        table[163].size      = 2;
                    709:        table[163].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    710:        table[163].buffer[1] = (unsigned char) 163; /* 0xa3 */
                    711: 
                    712:        /* store item associated to code 164 */
                    713:        table[164].size      = 3;
                    714:        table[164].buffer[0] = (unsigned char) 226; /* 0xe2 */
                    715:        table[164].buffer[1] = (unsigned char) 130; /* 0x82 */
                    716:        table[164].buffer[2] = (unsigned char) 172; /* 0xac */
                    717: 
                    718:        /* store item associated to code 165 */
                    719:        table[165].size      = 2;
                    720:        table[165].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    721:        table[165].buffer[1] = (unsigned char) 165; /* 0xa5 */
                    722: 
                    723:        /* store item associated to code 166 */
                    724:        table[166].size      = 2;
                    725:        table[166].buffer[0] = (unsigned char) 197; /* 0xc5 */
                    726:        table[166].buffer[1] = (unsigned char) 160; /* 0xa0 */
                    727: 
                    728:        /* store item associated to code 167 */
                    729:        table[167].size      = 2;
                    730:        table[167].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    731:        table[167].buffer[1] = (unsigned char) 167; /* 0xa7 */
                    732: 
                    733:        /* store item associated to code 168 */
                    734:        table[168].size      = 2;
                    735:        table[168].buffer[0] = (unsigned char) 197; /* 0xc5 */
                    736:        table[168].buffer[1] = (unsigned char) 161; /* 0xa1 */
                    737: 
                    738:        /* store item associated to code 169 */
                    739:        table[169].size      = 2;
                    740:        table[169].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    741:        table[169].buffer[1] = (unsigned char) 169; /* 0xa9 */
                    742: 
                    743:        /* store item associated to code 170 */
                    744:        table[170].size      = 2;
                    745:        table[170].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    746:        table[170].buffer[1] = (unsigned char) 170; /* 0xaa */
                    747: 
                    748:        /* store item associated to code 171 */
                    749:        table[171].size      = 2;
                    750:        table[171].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    751:        table[171].buffer[1] = (unsigned char) 171; /* 0xab */
                    752: 
                    753:        /* store item associated to code 172 */
                    754:        table[172].size      = 2;
                    755:        table[172].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    756:        table[172].buffer[1] = (unsigned char) 172; /* 0xac */
                    757: 
                    758:        /* store item associated to code 173 */
                    759:        table[173].size      = 2;
                    760:        table[173].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    761:        table[173].buffer[1] = (unsigned char) 173; /* 0xad */
                    762: 
                    763:        /* store item associated to code 174 */
                    764:        table[174].size      = 2;
                    765:        table[174].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    766:        table[174].buffer[1] = (unsigned char) 174; /* 0xae */
                    767: 
                    768:        /* store item associated to code 175 */
                    769:        table[175].size      = 2;
                    770:        table[175].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    771:        table[175].buffer[1] = (unsigned char) 175; /* 0xaf */
                    772: 
                    773:        /* store item associated to code 176 */
                    774:        table[176].size      = 2;
                    775:        table[176].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    776:        table[176].buffer[1] = (unsigned char) 176; /* 0xb0 */
                    777: 
                    778:        /* store item associated to code 177 */
                    779:        table[177].size      = 2;
                    780:        table[177].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    781:        table[177].buffer[1] = (unsigned char) 177; /* 0xb1 */
                    782: 
                    783:        /* store item associated to code 178 */
                    784:        table[178].size      = 2;
                    785:        table[178].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    786:        table[178].buffer[1] = (unsigned char) 178; /* 0xb2 */
                    787: 
                    788:        /* store item associated to code 179 */
                    789:        table[179].size      = 2;
                    790:        table[179].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    791:        table[179].buffer[1] = (unsigned char) 179; /* 0xb3 */
                    792: 
                    793:        /* store item associated to code 180 */
                    794:        table[180].size      = 2;
                    795:        table[180].buffer[0] = (unsigned char) 197; /* 0xc5 */
                    796:        table[180].buffer[1] = (unsigned char) 189; /* 0xbd */
                    797: 
                    798:        /* store item associated to code 181 */
                    799:        table[181].size      = 2;
                    800:        table[181].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    801:        table[181].buffer[1] = (unsigned char) 181; /* 0xb5 */
                    802: 
                    803:        /* store item associated to code 182 */
                    804:        table[182].size      = 2;
                    805:        table[182].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    806:        table[182].buffer[1] = (unsigned char) 182; /* 0xb6 */
                    807: 
                    808:        /* store item associated to code 183 */
                    809:        table[183].size      = 2;
                    810:        table[183].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    811:        table[183].buffer[1] = (unsigned char) 183; /* 0xb7 */
                    812: 
                    813:        /* store item associated to code 184 */
                    814:        table[184].size      = 2;
                    815:        table[184].buffer[0] = (unsigned char) 197; /* 0xc5 */
                    816:        table[184].buffer[1] = (unsigned char) 190; /* 0xbe */
                    817: 
                    818:        /* store item associated to code 185 */
                    819:        table[185].size      = 2;
                    820:        table[185].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    821:        table[185].buffer[1] = (unsigned char) 185; /* 0xb9 */
                    822: 
                    823:        /* store item associated to code 186 */
                    824:        table[186].size      = 2;
                    825:        table[186].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    826:        table[186].buffer[1] = (unsigned char) 186; /* 0xba */
                    827: 
                    828:        /* store item associated to code 187 */
                    829:        table[187].size      = 2;
                    830:        table[187].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    831:        table[187].buffer[1] = (unsigned char) 187; /* 0xbb */
                    832: 
                    833:        /* store item associated to code 188 */
                    834:        table[188].size      = 2;
                    835:        table[188].buffer[0] = (unsigned char) 197; /* 0xc5 */
                    836:        table[188].buffer[1] = (unsigned char) 146; /* 0x92 */
                    837: 
                    838:        /* store item associated to code 189 */
                    839:        table[189].size      = 2;
                    840:        table[189].buffer[0] = (unsigned char) 197; /* 0xc5 */
                    841:        table[189].buffer[1] = (unsigned char) 147; /* 0x93 */
                    842: 
                    843:        /* store item associated to code 190 */
                    844:        table[190].size      = 2;
                    845:        table[190].buffer[0] = (unsigned char) 197; /* 0xc5 */
                    846:        table[190].buffer[1] = (unsigned char) 184; /* 0xb8 */
                    847: 
                    848:        /* store item associated to code 191 */
                    849:        table[191].size      = 2;
                    850:        table[191].buffer[0] = (unsigned char) 194; /* 0xc2 */
                    851:        table[191].buffer[1] = (unsigned char) 191; /* 0xbf */
                    852: 
                    853:        /* store item associated to code 192 */
                    854:        table[192].size      = 2;
                    855:        table[192].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    856:        table[192].buffer[1] = (unsigned char) 128; /* 0x80 */
                    857: 
                    858:        /* store item associated to code 193 */
                    859:        table[193].size      = 2;
                    860:        table[193].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    861:        table[193].buffer[1] = (unsigned char) 129; /* 0x81 */
                    862: 
                    863:        /* store item associated to code 194 */
                    864:        table[194].size      = 2;
                    865:        table[194].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    866:        table[194].buffer[1] = (unsigned char) 130; /* 0x82 */
                    867: 
                    868:        /* store item associated to code 195 */
                    869:        table[195].size      = 2;
                    870:        table[195].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    871:        table[195].buffer[1] = (unsigned char) 131; /* 0x83 */
                    872: 
                    873:        /* store item associated to code 196 */
                    874:        table[196].size      = 2;
                    875:        table[196].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    876:        table[196].buffer[1] = (unsigned char) 132; /* 0x84 */
                    877: 
                    878:        /* store item associated to code 197 */
                    879:        table[197].size      = 2;
                    880:        table[197].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    881:        table[197].buffer[1] = (unsigned char) 133; /* 0x85 */
                    882: 
                    883:        /* store item associated to code 198 */
                    884:        table[198].size      = 2;
                    885:        table[198].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    886:        table[198].buffer[1] = (unsigned char) 134; /* 0x86 */
                    887: 
                    888:        /* store item associated to code 199 */
                    889:        table[199].size      = 2;
                    890:        table[199].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    891:        table[199].buffer[1] = (unsigned char) 135; /* 0x87 */
                    892: 
                    893:        /* store item associated to code 200 */
                    894:        table[200].size      = 2;
                    895:        table[200].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    896:        table[200].buffer[1] = (unsigned char) 136; /* 0x88 */
                    897: 
                    898:        /* store item associated to code 201 */
                    899:        table[201].size      = 2;
                    900:        table[201].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    901:        table[201].buffer[1] = (unsigned char) 137; /* 0x89 */
                    902: 
                    903:        /* store item associated to code 202 */
                    904:        table[202].size      = 2;
                    905:        table[202].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    906:        table[202].buffer[1] = (unsigned char) 138; /* 0x8a */
                    907: 
                    908:        /* store item associated to code 203 */
                    909:        table[203].size      = 2;
                    910:        table[203].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    911:        table[203].buffer[1] = (unsigned char) 139; /* 0x8b */
                    912: 
                    913:        /* store item associated to code 204 */
                    914:        table[204].size      = 2;
                    915:        table[204].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    916:        table[204].buffer[1] = (unsigned char) 140; /* 0x8c */
                    917: 
                    918:        /* store item associated to code 205 */
                    919:        table[205].size      = 2;
                    920:        table[205].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    921:        table[205].buffer[1] = (unsigned char) 141; /* 0x8d */
                    922: 
                    923:        /* store item associated to code 206 */
                    924:        table[206].size      = 2;
                    925:        table[206].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    926:        table[206].buffer[1] = (unsigned char) 142; /* 0x8e */
                    927: 
                    928:        /* store item associated to code 207 */
                    929:        table[207].size      = 2;
                    930:        table[207].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    931:        table[207].buffer[1] = (unsigned char) 143; /* 0x8f */
                    932: 
                    933:        /* store item associated to code 208 */
                    934:        table[208].size      = 2;
                    935:        table[208].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    936:        table[208].buffer[1] = (unsigned char) 144; /* 0x90 */
                    937: 
                    938:        /* store item associated to code 209 */
                    939:        table[209].size      = 2;
                    940:        table[209].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    941:        table[209].buffer[1] = (unsigned char) 145; /* 0x91 */
                    942: 
                    943:        /* store item associated to code 210 */
                    944:        table[210].size      = 2;
                    945:        table[210].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    946:        table[210].buffer[1] = (unsigned char) 146; /* 0x92 */
                    947: 
                    948:        /* store item associated to code 211 */
                    949:        table[211].size      = 2;
                    950:        table[211].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    951:        table[211].buffer[1] = (unsigned char) 147; /* 0x93 */
                    952: 
                    953:        /* store item associated to code 212 */
                    954:        table[212].size      = 2;
                    955:        table[212].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    956:        table[212].buffer[1] = (unsigned char) 148; /* 0x94 */
                    957: 
                    958:        /* store item associated to code 213 */
                    959:        table[213].size      = 2;
                    960:        table[213].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    961:        table[213].buffer[1] = (unsigned char) 149; /* 0x95 */
                    962: 
                    963:        /* store item associated to code 214 */
                    964:        table[214].size      = 2;
                    965:        table[214].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    966:        table[214].buffer[1] = (unsigned char) 150; /* 0x96 */
                    967: 
                    968:        /* store item associated to code 215 */
                    969:        table[215].size      = 2;
                    970:        table[215].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    971:        table[215].buffer[1] = (unsigned char) 151; /* 0x97 */
                    972: 
                    973:        /* store item associated to code 216 */
                    974:        table[216].size      = 2;
                    975:        table[216].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    976:        table[216].buffer[1] = (unsigned char) 152; /* 0x98 */
                    977: 
                    978:        /* store item associated to code 217 */
                    979:        table[217].size      = 2;
                    980:        table[217].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    981:        table[217].buffer[1] = (unsigned char) 153; /* 0x99 */
                    982: 
                    983:        /* store item associated to code 218 */
                    984:        table[218].size      = 2;
                    985:        table[218].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    986:        table[218].buffer[1] = (unsigned char) 154; /* 0x9a */
                    987: 
                    988:        /* store item associated to code 219 */
                    989:        table[219].size      = 2;
                    990:        table[219].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    991:        table[219].buffer[1] = (unsigned char) 155; /* 0x9b */
                    992: 
                    993:        /* store item associated to code 220 */
                    994:        table[220].size      = 2;
                    995:        table[220].buffer[0] = (unsigned char) 195; /* 0xc3 */
                    996:        table[220].buffer[1] = (unsigned char) 156; /* 0x9c */
                    997: 
                    998:        /* store item associated to code 221 */
                    999:        table[221].size      = 2;
                   1000:        table[221].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1001:        table[221].buffer[1] = (unsigned char) 157; /* 0x9d */
                   1002: 
                   1003:        /* store item associated to code 222 */
                   1004:        table[222].size      = 2;
                   1005:        table[222].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1006:        table[222].buffer[1] = (unsigned char) 158; /* 0x9e */
                   1007: 
                   1008:        /* store item associated to code 223 */
                   1009:        table[223].size      = 2;
                   1010:        table[223].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1011:        table[223].buffer[1] = (unsigned char) 159; /* 0x9f */
                   1012: 
                   1013:        /* store item associated to code 224 */
                   1014:        table[224].size      = 2;
                   1015:        table[224].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1016:        table[224].buffer[1] = (unsigned char) 160; /* 0xa0 */
                   1017: 
                   1018:        /* store item associated to code 225 */
                   1019:        table[225].size      = 2;
                   1020:        table[225].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1021:        table[225].buffer[1] = (unsigned char) 161; /* 0xa1 */
                   1022: 
                   1023:        /* store item associated to code 226 */
                   1024:        table[226].size      = 2;
                   1025:        table[226].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1026:        table[226].buffer[1] = (unsigned char) 162; /* 0xa2 */
                   1027: 
                   1028:        /* store item associated to code 227 */
                   1029:        table[227].size      = 2;
                   1030:        table[227].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1031:        table[227].buffer[1] = (unsigned char) 163; /* 0xa3 */
                   1032: 
                   1033:        /* store item associated to code 228 */
                   1034:        table[228].size      = 2;
                   1035:        table[228].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1036:        table[228].buffer[1] = (unsigned char) 164; /* 0xa4 */
                   1037: 
                   1038:        /* store item associated to code 229 */
                   1039:        table[229].size      = 2;
                   1040:        table[229].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1041:        table[229].buffer[1] = (unsigned char) 165; /* 0xa5 */
                   1042: 
                   1043:        /* store item associated to code 230 */
                   1044:        table[230].size      = 2;
                   1045:        table[230].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1046:        table[230].buffer[1] = (unsigned char) 166; /* 0xa6 */
                   1047: 
                   1048:        /* store item associated to code 231 */
                   1049:        table[231].size      = 2;
                   1050:        table[231].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1051:        table[231].buffer[1] = (unsigned char) 167; /* 0xa7 */
                   1052: 
                   1053:        /* store item associated to code 232 */
                   1054:        table[232].size      = 2;
                   1055:        table[232].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1056:        table[232].buffer[1] = (unsigned char) 168; /* 0xa8 */
                   1057: 
                   1058:        /* store item associated to code 233 */
                   1059:        table[233].size      = 2;
                   1060:        table[233].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1061:        table[233].buffer[1] = (unsigned char) 169; /* 0xa9 */
                   1062: 
                   1063:        /* store item associated to code 234 */
                   1064:        table[234].size      = 2;
                   1065:        table[234].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1066:        table[234].buffer[1] = (unsigned char) 170; /* 0xaa */
                   1067: 
                   1068:        /* store item associated to code 235 */
                   1069:        table[235].size      = 2;
                   1070:        table[235].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1071:        table[235].buffer[1] = (unsigned char) 171; /* 0xab */
                   1072: 
                   1073:        /* store item associated to code 236 */
                   1074:        table[236].size      = 2;
                   1075:        table[236].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1076:        table[236].buffer[1] = (unsigned char) 172; /* 0xac */
                   1077: 
                   1078:        /* store item associated to code 237 */
                   1079:        table[237].size      = 2;
                   1080:        table[237].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1081:        table[237].buffer[1] = (unsigned char) 173; /* 0xad */
                   1082: 
                   1083:        /* store item associated to code 238 */
                   1084:        table[238].size      = 2;
                   1085:        table[238].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1086:        table[238].buffer[1] = (unsigned char) 174; /* 0xae */
                   1087: 
                   1088:        /* store item associated to code 239 */
                   1089:        table[239].size      = 2;
                   1090:        table[239].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1091:        table[239].buffer[1] = (unsigned char) 175; /* 0xaf */
                   1092: 
                   1093:        /* store item associated to code 240 */
                   1094:        table[240].size      = 2;
                   1095:        table[240].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1096:        table[240].buffer[1] = (unsigned char) 176; /* 0xb0 */
                   1097: 
                   1098:        /* store item associated to code 241 */
                   1099:        table[241].size      = 2;
                   1100:        table[241].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1101:        table[241].buffer[1] = (unsigned char) 177; /* 0xb1 */
                   1102: 
                   1103:        /* store item associated to code 242 */
                   1104:        table[242].size      = 2;
                   1105:        table[242].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1106:        table[242].buffer[1] = (unsigned char) 178; /* 0xb2 */
                   1107: 
                   1108:        /* store item associated to code 243 */
                   1109:        table[243].size      = 2;
                   1110:        table[243].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1111:        table[243].buffer[1] = (unsigned char) 179; /* 0xb3 */
                   1112: 
                   1113:        /* store item associated to code 244 */
                   1114:        table[244].size      = 2;
                   1115:        table[244].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1116:        table[244].buffer[1] = (unsigned char) 180; /* 0xb4 */
                   1117: 
                   1118:        /* store item associated to code 245 */
                   1119:        table[245].size      = 2;
                   1120:        table[245].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1121:        table[245].buffer[1] = (unsigned char) 181; /* 0xb5 */
                   1122: 
                   1123:        /* store item associated to code 246 */
                   1124:        table[246].size      = 2;
                   1125:        table[246].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1126:        table[246].buffer[1] = (unsigned char) 182; /* 0xb6 */
                   1127: 
                   1128:        /* store item associated to code 247 */
                   1129:        table[247].size      = 2;
                   1130:        table[247].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1131:        table[247].buffer[1] = (unsigned char) 183; /* 0xb7 */
                   1132: 
                   1133:        /* store item associated to code 248 */
                   1134:        table[248].size      = 2;
                   1135:        table[248].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1136:        table[248].buffer[1] = (unsigned char) 184; /* 0xb8 */
                   1137: 
                   1138:        /* store item associated to code 249 */
                   1139:        table[249].size      = 2;
                   1140:        table[249].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1141:        table[249].buffer[1] = (unsigned char) 185; /* 0xb9 */
                   1142: 
                   1143:        /* store item associated to code 250 */
                   1144:        table[250].size      = 2;
                   1145:        table[250].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1146:        table[250].buffer[1] = (unsigned char) 186; /* 0xba */
                   1147: 
                   1148:        /* store item associated to code 251 */
                   1149:        table[251].size      = 2;
                   1150:        table[251].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1151:        table[251].buffer[1] = (unsigned char) 187; /* 0xbb */
                   1152: 
                   1153:        /* store item associated to code 252 */
                   1154:        table[252].size      = 2;
                   1155:        table[252].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1156:        table[252].buffer[1] = (unsigned char) 188; /* 0xbc */
                   1157: 
                   1158:        /* store item associated to code 253 */
                   1159:        table[253].size      = 2;
                   1160:        table[253].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1161:        table[253].buffer[1] = (unsigned char) 189; /* 0xbd */
                   1162: 
                   1163:        /* store item associated to code 254 */
                   1164:        table[254].size      = 2;
                   1165:        table[254].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1166:        table[254].buffer[1] = (unsigned char) 190; /* 0xbe */
                   1167: 
                   1168:        /* store item associated to code 255 */
                   1169:        table[255].size      = 2;
                   1170:        table[255].buffer[0] = (unsigned char) 195; /* 0xc3 */
                   1171:        table[255].buffer[1] = (unsigned char) 191; /* 0xbf */
                   1172: 
                   1173:        /* return table created */
                   1174:        return table;
                   1175: 
                   1176: } /* end axl_babel_build_iso885915_table */
                   1177: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>