File: mk_ctable.c

package info (click to toggle)
wxwidgets3.0 3.0.5.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 120,464 kB
  • sloc: cpp: 896,633; makefile: 52,303; ansic: 21,971; sh: 5,713; python: 2,940; xml: 1,534; perl: 264; javascript: 33
file content (79 lines) | stat: -rw-r--r-- 1,791 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79


#include <stdio.h>

typedef struct {
        unsigned char c;
        unsigned short u;
    } charsetItem;



int cmpt(const void *i1, const void *i2)
{
    unsigned short u1 = ((charsetItem*)i1) -> u;
    unsigned short u2 = ((charsetItem*)i2) -> u;
    return (u1 - u2);
}



int main(int argc, char *argv[])
{
    unsigned enc, unic;
    unsigned i;
    charsetItem table[256];

    for (i = 0; i < 256; i++) { table[i].c = i, table[i].u = 0; /* unknown */}

    while (!feof(stdin))
    {
        scanf("%i\t%i\n", &enc, &unic);
        table[enc].u = unic;
        table[enc].c = enc;
        if (enc < 128 && enc != unic) 
            fprintf(stderr, "7bit ASCII incompatibilit (%s): %i->%i\n", 
                    argv[2], enc, unic);
    }
    
    /* dump it: */
    
    printf("\n\n"
           "/*\n"
           " * %s to Unicode recoding table\n"
           " * based on file %s by Unicode Consortium\n"
           " */\n\n"
           "static const wxUint16 encoding_table__%s[128] = {",
           argv[2], argv[1], argv[2]);
           
    for (i = 128; i < 256; i++)
    { 
        if (i % 8 == 0)
            printf("\n   ");
        printf(" 0x%04X%c", table[i].u, (i == 255) ? '\n' : ',');
    }
    printf(" };\n");

    qsort(table + 128, 128, sizeof(table[0]), cmpt);


/*
    NO, WE DON'T NEED REVERSE TABLE, WE CAN BUILD IT AT RUNTIME
    (won't take that much time, after all you don't init
    conversion so often...)

    printf("\n"
           "static wxUint16 encoding_table_rev__%s[128] = {",
           argv[2]);
           
    for (i = 128; i < 256; i++)
    { 
        if (i % 4 == 0)
            printf("\n    ");
        printf("{c:0x%02X,u:0x%04X}%c ", table[i].c, table[i].u, (i == 255) ? '\n' : ',');
    }
    printf("};\n");
*/

    return 1;
}