2 * Copyright (C) 2001 Free Software Foundation, Inc.
3 * This file is part of the GNU LIBICONV Library.
5 * The GNU LIBICONV Library is free software; you can redistribute it
6 * and/or modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * The GNU LIBICONV Library is distributed in the hope that it will be
11 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with the GNU LIBICONV Library; see the file COPYING.LIB.
17 * If not, write to the Free Software Foundation, Inc., 59 Temple Place -
18 * Suite 330, Boston, MA 02111-1307, USA.
21 /* Combining characters used in Vietnamese encodings CP1258, TCVN. */
28 /* Relevant combining characters. */
29 static const unsigned short viet_comb_table
[] = {
30 0x0300, 0x0301, 0x0303, 0x0309, 0x0323,
33 /* Composition tables for each of the relevant combining characters. */
34 static const unsigned short viet_comp_table_data
[][2] = {
35 #define viet_comp_table0300_len 31
63 /*{ 0x0112, 0x1E14 },*/
64 /*{ 0x0113, 0x1E15 },*/
65 /*{ 0x014C, 0x1E50 },*/
66 /*{ 0x014D, 0x1E51 },*/
71 #define viet_comp_table0301_len 60
115 /*{ 0x00D5, 0x1E4C },*/
125 /*{ 0x00F5, 0x1E4D },*/
130 /*{ 0x0112, 0x1E16 },*/
131 /*{ 0x0113, 0x1E17 },*/
132 /*{ 0x014C, 0x1E52 },*/
133 /*{ 0x014D, 0x1E53 },*/
134 /*{ 0x0168, 0x1E78 },*/
135 /*{ 0x0169, 0x1E79 },*/
140 #define viet_comp_table0303_len 34
175 #define viet_comp_table0309_len 24
200 #define viet_comp_table0323_len 50
252 static const struct { unsigned int len
; unsigned int offset
; } viet_comp_table
[] = {
253 { viet_comp_table0300_len
, 0 },
254 { viet_comp_table0301_len
, viet_comp_table0300_len
},
255 { viet_comp_table0303_len
, viet_comp_table0300_len
+ viet_comp_table0301_len
},
256 { viet_comp_table0309_len
, viet_comp_table0300_len
+ viet_comp_table0301_len
+ viet_comp_table0303_len
},
257 { viet_comp_table0323_len
, viet_comp_table0300_len
+ viet_comp_table0301_len
+ viet_comp_table0303_len
+ viet_comp_table0309_len
},
262 /* Decomposition table for the relevant Unicode characters. */
263 struct viet_decomp
{ unsigned short composed
; unsigned short base
: 12; int comb1
: 4; };
264 static const struct viet_decomp viet_decomp_table
[] = {
265 { 0x00B4, 0x0020, 1 }, /* compatility decomposition - for TCVN only */
266 { 0x00C0, 0x0041, 0 },
267 { 0x00C1, 0x0041, 1 },
268 { 0x00C3, 0x0041, 2 },
269 { 0x00C8, 0x0045, 0 },
270 { 0x00C9, 0x0045, 1 },
271 { 0x00CC, 0x0049, 0 },
272 { 0x00CD, 0x0049, 1 },
273 { 0x00D1, 0x004E, 2 },
274 { 0x00D2, 0x004F, 0 },
275 { 0x00D3, 0x004F, 1 },
276 { 0x00D5, 0x004F, 2 },
277 { 0x00D9, 0x0055, 0 },
278 { 0x00DA, 0x0055, 1 },
279 { 0x00DD, 0x0059, 1 },
280 { 0x00E0, 0x0061, 0 },
281 { 0x00E1, 0x0061, 1 },
282 { 0x00E3, 0x0061, 2 },
283 { 0x00E8, 0x0065, 0 },
284 { 0x00E9, 0x0065, 1 },
285 { 0x00EC, 0x0069, 0 },
286 { 0x00ED, 0x0069, 1 },
287 { 0x00F1, 0x006E, 2 },
288 { 0x00F2, 0x006F, 0 },
289 { 0x00F3, 0x006F, 1 },
290 { 0x00F5, 0x006F, 2 },
291 { 0x00F9, 0x0075, 0 },
292 { 0x00FA, 0x0075, 1 },
293 { 0x00FD, 0x0079, 1 },
294 { 0x0106, 0x0043, 1 },
295 { 0x0107, 0x0063, 1 },
296 { 0x0128, 0x0049, 2 },
297 { 0x0129, 0x0069, 2 },
298 { 0x0139, 0x004C, 1 },
299 { 0x013A, 0x006C, 1 },
300 { 0x0143, 0x004E, 1 },
301 { 0x0144, 0x006E, 1 },
302 { 0x0154, 0x0052, 1 },
303 { 0x0155, 0x0072, 1 },
304 { 0x015A, 0x0053, 1 },
305 { 0x015B, 0x0073, 1 },
306 { 0x0168, 0x0055, 2 },
307 { 0x0169, 0x0075, 2 },
308 { 0x0179, 0x005A, 1 },
309 { 0x017A, 0x007A, 1 },
310 { 0x01D7, 0x00DC, 1 },
311 { 0x01D8, 0x00FC, 1 },
312 { 0x01DB, 0x00DC, 0 },
313 { 0x01DC, 0x00FC, 0 },
314 { 0x01F4, 0x0047, 1 },
315 { 0x01F5, 0x0067, 1 },
316 { 0x01F8, 0x004E, 0 },
317 { 0x01F9, 0x006E, 0 },
318 { 0x01FA, 0x00C5, 1 },
319 { 0x01FB, 0x00E5, 1 },
320 { 0x01FC, 0x00C6, 1 },
321 { 0x01FD, 0x00E6, 1 },
322 { 0x01FE, 0x00D8, 1 },
323 { 0x01FF, 0x00F8, 1 },
324 { 0x02DC, 0x0020, 2 }, /* compatility decomposition - for TCVN only */
325 { 0x0385, 0x00A5, 1 },
326 { 0x1E04, 0x0042, 4 },
327 { 0x1E05, 0x0062, 4 },
328 { 0x1E08, 0x00C7, 1 },
329 { 0x1E09, 0x00E7, 1 },
330 { 0x1E0C, 0x0044, 4 },
331 { 0x1E0D, 0x0064, 4 },
332 { 0x1E24, 0x0048, 4 },
333 { 0x1E25, 0x0068, 4 },
334 { 0x1E2E, 0x00CF, 1 },
335 { 0x1E2F, 0x00EF, 1 },
336 { 0x1E30, 0x004B, 1 },
337 { 0x1E31, 0x006B, 1 },
338 { 0x1E32, 0x004B, 4 },
339 { 0x1E33, 0x006B, 4 },
340 { 0x1E36, 0x004C, 4 },
341 { 0x1E37, 0x006C, 4 },
342 { 0x1E3E, 0x004D, 1 },
343 { 0x1E3F, 0x006D, 1 },
344 { 0x1E42, 0x004D, 4 },
345 { 0x1E43, 0x006D, 4 },
346 { 0x1E46, 0x004E, 4 },
347 { 0x1E47, 0x006E, 4 },
348 { 0x1E4C, 0x00D3, 2 }, /*{ 0x1E4C, 0x00D5, 1 },*/ /*{ 0x1E4C, 0x004F, 1, 2 },*/
349 { 0x1E4D, 0x00F3, 2 }, /*{ 0x1E4D, 0x00F5, 1 },*/ /*{ 0x1E4D, 0x006F, 1, 2 },*/
350 { 0x1E4E, 0x00D6, 2 },
351 { 0x1E4F, 0x00F6, 2 },
352 { 0x1E54, 0x0050, 1 },
353 { 0x1E55, 0x0070, 1 },
354 { 0x1E5A, 0x0052, 4 },
355 { 0x1E5B, 0x0072, 4 },
356 { 0x1E62, 0x0053, 4 },
357 { 0x1E63, 0x0073, 4 },
358 { 0x1E6C, 0x0054, 4 },
359 { 0x1E6D, 0x0074, 4 },
360 { 0x1E78, 0x00DA, 2 }, /*{ 0x1E78, 0x0168, 1 },*/ /*{ 0x1E78, 0x0055, 1, 2 },*/
361 { 0x1E79, 0x00FA, 2 }, /*{ 0x1E79, 0x0169, 1 },*/ /*{ 0x1E79, 0x0075, 1, 2 },*/
362 { 0x1E7C, 0x0056, 2 },
363 { 0x1E7D, 0x0076, 2 },
364 { 0x1E7E, 0x0056, 4 },
365 { 0x1E7F, 0x0076, 4 },
366 { 0x1E80, 0x0057, 0 },
367 { 0x1E81, 0x0077, 0 },
368 { 0x1E82, 0x0057, 1 },
369 { 0x1E83, 0x0077, 1 },
370 { 0x1E88, 0x0057, 4 },
371 { 0x1E89, 0x0077, 4 },
372 { 0x1E92, 0x005A, 4 },
373 { 0x1E93, 0x007A, 4 },
374 { 0x1EA0, 0x0041, 4 },
375 { 0x1EA1, 0x0061, 4 },
376 { 0x1EA2, 0x0041, 3 },
377 { 0x1EA3, 0x0061, 3 },
378 { 0x1EA4, 0x00C2, 1 },
379 { 0x1EA5, 0x00E2, 1 },
380 { 0x1EA6, 0x00C2, 0 },
381 { 0x1EA7, 0x00E2, 0 },
382 { 0x1EA8, 0x00C2, 3 },
383 { 0x1EA9, 0x00E2, 3 },
384 { 0x1EAA, 0x00C2, 2 },
385 { 0x1EAB, 0x00E2, 2 },
386 { 0x1EAC, 0x00C2, 4 },
387 { 0x1EAD, 0x00E2, 4 },
388 { 0x1EAE, 0x0102, 1 },
389 { 0x1EAF, 0x0103, 1 },
390 { 0x1EB0, 0x0102, 0 },
391 { 0x1EB1, 0x0103, 0 },
392 { 0x1EB2, 0x0102, 3 },
393 { 0x1EB3, 0x0103, 3 },
394 { 0x1EB4, 0x0102, 2 },
395 { 0x1EB5, 0x0103, 2 },
396 { 0x1EB6, 0x0102, 4 },
397 { 0x1EB7, 0x0103, 4 },
398 { 0x1EB8, 0x0045, 4 },
399 { 0x1EB9, 0x0065, 4 },
400 { 0x1EBA, 0x0045, 3 },
401 { 0x1EBB, 0x0065, 3 },
402 { 0x1EBC, 0x0045, 2 },
403 { 0x1EBD, 0x0065, 2 },
404 { 0x1EBE, 0x00CA, 1 },
405 { 0x1EBF, 0x00EA, 1 },
406 { 0x1EC0, 0x00CA, 0 },
407 { 0x1EC1, 0x00EA, 0 },
408 { 0x1EC2, 0x00CA, 3 },
409 { 0x1EC3, 0x00EA, 3 },
410 { 0x1EC4, 0x00CA, 2 },
411 { 0x1EC5, 0x00EA, 2 },
412 { 0x1EC6, 0x00CA, 4 },
413 { 0x1EC7, 0x00EA, 4 },
414 { 0x1EC8, 0x0049, 3 },
415 { 0x1EC9, 0x0069, 3 },
416 { 0x1ECA, 0x0049, 4 },
417 { 0x1ECB, 0x0069, 4 },
418 { 0x1ECC, 0x004F, 4 },
419 { 0x1ECD, 0x006F, 4 },
420 { 0x1ECE, 0x004F, 3 },
421 { 0x1ECF, 0x006F, 3 },
422 { 0x1ED0, 0x00D4, 1 },
423 { 0x1ED1, 0x00F4, 1 },
424 { 0x1ED2, 0x00D4, 0 },
425 { 0x1ED3, 0x00F4, 0 },
426 { 0x1ED4, 0x00D4, 3 },
427 { 0x1ED5, 0x00F4, 3 },
428 { 0x1ED6, 0x00D4, 2 },
429 { 0x1ED7, 0x00F4, 2 },
430 { 0x1ED8, 0x00D4, 4 },
431 { 0x1ED9, 0x00F4, 4 },
432 { 0x1EDA, 0x01A0, 1 },
433 { 0x1EDB, 0x01A1, 1 },
434 { 0x1EDC, 0x01A0, 0 },
435 { 0x1EDD, 0x01A1, 0 },
436 { 0x1EDE, 0x01A0, 3 },
437 { 0x1EDF, 0x01A1, 3 },
438 { 0x1EE0, 0x01A0, 2 },
439 { 0x1EE1, 0x01A1, 2 },
440 { 0x1EE2, 0x01A0, 4 },
441 { 0x1EE3, 0x01A1, 4 },
442 { 0x1EE4, 0x0055, 4 },
443 { 0x1EE5, 0x0075, 4 },
444 { 0x1EE6, 0x0055, 3 },
445 { 0x1EE7, 0x0075, 3 },
446 { 0x1EE8, 0x01AF, 1 },
447 { 0x1EE9, 0x01B0, 1 },
448 { 0x1EEA, 0x01AF, 0 },
449 { 0x1EEB, 0x01B0, 0 },
450 { 0x1EEC, 0x01AF, 3 },
451 { 0x1EED, 0x01B0, 3 },
452 { 0x1EEE, 0x01AF, 2 },
453 { 0x1EEF, 0x01B0, 2 },
454 { 0x1EF0, 0x01AF, 4 },
455 { 0x1EF1, 0x01B0, 4 },
456 { 0x1EF2, 0x0059, 0 },
457 { 0x1EF3, 0x0079, 0 },
458 { 0x1EF4, 0x0059, 4 },
459 { 0x1EF5, 0x0079, 4 },
460 { 0x1EF6, 0x0059, 3 },
461 { 0x1EF7, 0x0079, 3 },
462 { 0x1EF8, 0x0059, 2 },
463 { 0x1EF9, 0x0079, 2 },
464 { 0x1FED, 0x00A8, 0 },
465 { 0x1FEE, 0x00A8, 1 },
468 #endif /* _VIETCOMB_H */