I haven't understood a great deal of this conversation. That's not because I 
don't want to, just that I'm not at all familiar with font-stuff.

However, if I could return it to C++ for a minute. I attach a tiny C++ 
program that takes input
        \"a
and creates the appropriate output
        ä
using a map<string, string> to do the conversion

At the moment, this map is built from an array:
char const * const ic_array[] = {
        "\"a", "ä"
};

How do I build it from Herbert's unicode stuff? I imagine the array would 
contain this, but thereafter I don't know how to proceed.
char const * const ic_array[] = {
        "\"a", "\\u00E4
};

Just interested
Angus

trial2.C.gz

Reply via email to