File: combining.c

package info (click to toggle)
w3m 0.5.3%2Bgit20230121-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 11,520 kB
  • sloc: ansic: 59,204; sh: 4,331; perl: 4,217; javascript: 2,315; makefile: 913; cpp: 869; ruby: 776; awk: 78; sed: 16
file content (43 lines) | stat: -rw-r--r-- 1,170 bytes parent folder | download | duplicates (12)
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
36
37
38
39
40
41
42
43

#include "wc.h"
#ifdef USE_UNICODE
#include "ucs.h"
#endif
#include "map/iso88596_combining.map"
#include "map/iso885911_combining.map"
#include "map/cp864_combining.map"
#include "map/cp874_combining.map"
#include "map/cp1255_combining.map"
#include "map/cp1256_combining.map"
#include "map/cp1258_combining.map"
#include "map/tcvn5712_combining.map"

wc_bool
wc_is_combining(wc_wchar_t cc)
{
    switch (WC_CCS_SET(cc.ccs)) {
    case WC_CCS_ISO_8859_6:
	return iso88596_combining_map[cc.code & 0x7f];
    case WC_CCS_ISO_8859_11:
	return iso885911_combining_map[cc.code & 0x7f];
    case WC_CCS_CP864:
	return cp864_combining_map[cc.code & 0x7f];
    case WC_CCS_CP874:
	return cp874_combining_map[cc.code & 0x7f];
    case WC_CCS_CP1255:
	return cp1255_combining_map[cc.code & 0x7f];
    case WC_CCS_CP1256:
	return cp1256_combining_map[cc.code & 0x7f];
    case WC_CCS_CP1258_1:
	return cp1258_combining_map[cc.code & 0x7f];
    case WC_CCS_TCVN_5712_1:
	return tcvn5712_combining_map[cc.code & 0x7f];
#ifdef USE_UNICODE
    case WC_CCS_UCS2:
    case WC_CCS_UCS4:
    case WC_CCS_UCS_TAG:
	return wc_is_ucs_combining(cc.code);
#endif
    }
    return WC_FALSE;
}