blob: 1dbf21ea2a650a6165bd568a41bb05902bebbae7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* These chars are those found in iso8859-15.
* They are encoded in iso8859-15 right in this file and sorted
* by ascending value, _keep_ them sorted this way, a dichotomic
* search rely on this to locate the glyphs and infos.
*/
static unsigned char *ZnDefaultCharset =
" !\"#$%&'()*+,-./"
"0123456789"
":;<=>?@"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"[\\]^_`"
"abcdefghijklmnopqrstuvwxyz"
"{|}~"
"¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿"
"ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß"
"àáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"
"¾";
|