Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
f43f8f9d
Commit
f43f8f9d
authored
Aug 14, 2002
by
bar@bar.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More readable output
parent
12bdcaca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
7 deletions
+36
-7
mysys/charset2html.c
mysys/charset2html.c
+36
-7
No files found.
mysys/charset2html.c
View file @
f43f8f9d
...
...
@@ -29,6 +29,7 @@
typedef
struct
char_info_st
{
int
cod
;
int
srt
;
int
uni
;
int
low
;
...
...
@@ -43,20 +44,26 @@ static int chcmp(const void *vf, const void *vs)
return
f
->
srt
-
s
->
srt
?
f
->
srt
-
s
->
srt
:
f
->
uni
-
s
->
uni
;
}
static
void
print_cs
(
CHARSET_INFO
*
cs
)
{
uint
i
;
uint
i
;
int
srt
;
int
clr
=
0
;
MY_CH
ch
[
256
];
printf
(
"<HTML>
\n
"
);
printf
(
"<HEAD>
\n
"
);
printf
(
"</HEAD>
\n
"
);
printf
(
"<BODY><PRE>
\n
"
);
printf
(
"Charset %s
\n
"
,
cs
->
name
);
printf
(
"<TABLE>
\n
"
);
printf
(
"<TR><TH>Code<TH>Uni<TH>Sort<TH>Ctype<TH>Ch<TH>Lo<TH>Up</TR>"
);
for
(
i
=
0
;
i
<
256
;
i
++
)
{
ch
[
i
].
cod
=
i
;
ch
[
i
].
srt
=
cs
->
sort_order
[
i
];
ch
[
i
].
uni
=
cs
->
tab_to_uni
[
i
];
ch
[
i
].
low
=
cs
->
tab_to_uni
[
cs
->
to_lower
[
i
]];
...
...
@@ -65,12 +72,34 @@ static void print_cs(CHARSET_INFO *cs)
}
qsort
(
ch
,
256
,
sizeof
(
MY_CH
),
&
chcmp
);
for
(
i
=
1
;
i
<
256
;
i
++
)
srt
=
ch
[
0
].
srt
;
for
(
i
=
0
;
i
<
256
;
i
++
)
{
printf
(
"%d %d &#%d; &#%d; &#%d;
\n
"
,
ch
[
i
].
srt
,
ch
[
i
].
ctp
,
ch
[
i
].
uni
,
ch
[
i
].
low
,
ch
[
i
].
upp
);
clr
=
(
srt
!=
ch
[
i
].
srt
)
?
!
clr
:
clr
;
printf
(
"<TR bgcolor=#%s>"
,
clr
?
"DDDDDD"
:
"EEEE99"
);
printf
(
"<TD>%02X"
,
ch
[
i
].
cod
);
printf
(
"<TD>%04X"
,
ch
[
i
].
uni
);
printf
(
"<TD>%d"
,
ch
[
i
].
srt
);
printf
(
"<TD>%s%s%s%s%s%s%s%s"
,
ch
[
i
].
ctp
&
_U
?
"U"
:
""
,
ch
[
i
].
ctp
&
_L
?
"L"
:
""
,
ch
[
i
].
ctp
&
_NMR
?
"N"
:
""
,
ch
[
i
].
ctp
&
_SPC
?
"S"
:
""
,
ch
[
i
].
ctp
&
_PNT
?
"P"
:
""
,
ch
[
i
].
ctp
&
_CTR
?
"C"
:
""
,
ch
[
i
].
ctp
&
_B
?
"B"
:
""
,
ch
[
i
].
ctp
&
_X
?
"X"
:
""
);
printf
(
"<TD>&#%d;"
,
ch
[
i
].
uni
);
printf
(
"<TD>&#%d;"
,
ch
[
i
].
low
);
printf
(
"<TD>&#%d;"
,
ch
[
i
].
upp
);
printf
(
"</TR>
\n
"
);
srt
=
ch
[
i
].
srt
;
}
printf
(
"</TABLE>
\n
"
);
printf
(
"</PRE></BODY>
\n
"
);
printf
(
"</HTML>
\n
"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment