Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Modules /
cjkcodecs /
Delete
Unzip
Name
Size
Permission
Date
Action
clinic
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
README
2.56
KB
-rw-r--r--
2024-03-19 22:46
_codecs_cn.c
10.99
KB
-rw-r--r--
2024-03-19 22:46
_codecs_hk.c
4.96
KB
-rw-r--r--
2024-03-19 22:46
_codecs_iso2022.c
33.07
KB
-rw-r--r--
2024-03-19 22:46
_codecs_jp.c
19.92
KB
-rw-r--r--
2024-03-19 22:46
_codecs_kr.c
12.66
KB
-rw-r--r--
2024-03-19 22:46
_codecs_tw.c
2.3
KB
-rw-r--r--
2024-03-19 22:46
alg_jisx0201.h
3.06
KB
-rw-r--r--
2024-03-19 22:46
cjkcodecs.h
13.88
KB
-rw-r--r--
2024-03-19 22:46
emu_jisx0213_2000.h
2.71
KB
-rw-r--r--
2024-03-19 22:46
mappings_cn.h
312.41
KB
-rw-r--r--
2024-03-19 22:46
mappings_hk.h
179.44
KB
-rw-r--r--
2024-03-19 22:46
mappings_jisx0213_pair.h
3.77
KB
-rw-r--r--
2024-03-19 22:46
mappings_jp.h
356.98
KB
-rw-r--r--
2024-03-19 22:46
mappings_kr.h
247.94
KB
-rw-r--r--
2024-03-19 22:46
mappings_tw.h
198.82
KB
-rw-r--r--
2024-03-19 22:46
multibytecodec.c
58.69
KB
-rw-r--r--
2024-03-19 22:46
multibytecodec.h
4.47
KB
-rw-r--r--
2024-03-19 22:46
Save
Rename
/* These routines may be quite inefficient, but it's used only to emulate old * standards. */ #ifndef EMULATE_JISX0213_2000_ENCODE_INVALID # define EMULATE_JISX0213_2000_ENCODE_INVALID 1 #endif #define EMULATE_JISX0213_2000_ENCODE_BMP(assi, c) \ if (config == (void *)2000 && ( \ (c) == 0x9B1C || (c) == 0x4FF1 || \ (c) == 0x525D || (c) == 0x541E || \ (c) == 0x5653 || (c) == 0x59F8 || \ (c) == 0x5C5B || (c) == 0x5E77 || \ (c) == 0x7626 || (c) == 0x7E6B)) { \ return EMULATE_JISX0213_2000_ENCODE_INVALID; \ } \ else if (config == (void *)2000 && (c) == 0x9B1D) { \ (assi) = 0x8000 | 0x7d3b; \ } #define EMULATE_JISX0213_2000_ENCODE_EMP(assi, c) \ if (config == (void *)2000 && (c) == 0x20B9F) { \ return EMULATE_JISX0213_2000_ENCODE_INVALID; \ } #ifndef EMULATE_JISX0213_2000_DECODE_INVALID # define EMULATE_JISX0213_2000_DECODE_INVALID 2 #endif #define EMULATE_JISX0213_2000_DECODE_PLANE1(assi, c1, c2) \ if (config == (void *)2000 && \ (((c1) == 0x2E && (c2) == 0x21) || \ ((c1) == 0x2F && (c2) == 0x7E) || \ ((c1) == 0x4F && (c2) == 0x54) || \ ((c1) == 0x4F && (c2) == 0x7E) || \ ((c1) == 0x74 && (c2) == 0x27) || \ ((c1) == 0x7E && (c2) == 0x7A) || \ ((c1) == 0x7E && (c2) == 0x7B) || \ ((c1) == 0x7E && (c2) == 0x7C) || \ ((c1) == 0x7E && (c2) == 0x7D) || \ ((c1) == 0x7E && (c2) == 0x7E))) { \ return EMULATE_JISX0213_2000_DECODE_INVALID; \ } #define EMULATE_JISX0213_2000_DECODE_PLANE2(writer, c1, c2) \ if (config == (void *)2000 && (c1) == 0x7D && (c2) == 0x3B) { \ OUTCHAR(0x9B1D); \ } #define EMULATE_JISX0213_2000_DECODE_PLANE2_CHAR(assi, c1, c2) \ if (config == (void *)2000 && (c1) == 0x7D && (c2) == 0x3B) { \ (assi) = 0x9B1D; \ }