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
|
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-2">
<meta http-equiv="Content-language" content="pl">
<meta name="Author" content="W³odzimierz Macewicz">
</head>
<body>
<h4>Tablica konwersji na du¿e litery</h4>
W tablicy s± zdefiniowane odpowiedniki dla ma³ych liter alfabetu.
Tylko te znaki, które s± okre¶lone jako ,,ma³e'' w
<a href=typy.html>tablicy typów</a>
<pre>
static a_char_u pl_maz_upper_table =
{
'A','B','C','D','E','F','G','H',
'I','J','K','L','M','N','O','P',
'Q','R','S','T','U','V','W','X',
'Y','Z','{','|','}','~',' ',
' ',' ',' ',' ',' ',' ','¡',' ',
' ',' ',' ',' ',' ','Æ',' ',' ',
' ','Ê','£',' ',' ',' ',' ',' ',
' ',' ',' ',' ',' ',' ','¦',' ',
'¬',' ','Ó',' ','Ñ',' ','¬','¯'
};
</pre>
Tablica zawiera definicje dla wszystkich znaków o kodzie
wiêkszym od litery 'a'.
</body>
</html>
|