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