• Home
Name Date Size #Lines LOC

..--

additions/03-May-2024-238225

testunicode.xcodeproj/03-May-2024-189176

.gitignoreD03-May-2024263 3230

CVTUTF7.CD03-May-20247.9 KiB300199

CVTUTF7.HD03-May-20243.4 KiB8013

ConvertUTF.cD03-May-202419 KiB550371

ConvertUTF.hD03-May-20245.8 KiB15044

DerivedAge.txtD03-May-2024119.5 KiB1,8661,745

ExpectedOutput.txtD03-May-2024718 2216

METADATAD03-May-202439 43

MODULE_LICENSE_UNICODED03-May-20240

NOTICED03-May-20241.9 KiB3733

OWNERSD03-May-2024151 54

README.androidD03-May-2024369 1310

README.versionD03-May-2024162 54

TEST_MAPPINGD03-May-202467 87

emoji-data.txtD03-May-2024103.5 KiB1,2621,235

emoji-sequences.txtD03-May-2024175.8 KiB1,4041,382

emoji-test.txtD03-May-2024562 KiB4,8804,756

emoji-variation-sequences.txtD03-May-202435.6 KiB724721

emoji-zwj-sequences.txtD03-May-2024222.3 KiB1,3911,369

harness.cD03-May-202417 KiB447266

readme.txtD03-May-20241.5 KiB4530

testunicode.slnD03-May-2024866 2119

testunicode.vcprojD03-May-20243.9 KiB210193

README.android

1URL: http://www.unicode.org/Public/10.0.0/ucd/
2URL: https://unicode.org/Public/emoji/13.1/
3Version: Unicode 10.0.0 beta and emoji 13.1
4License: Unicode
5License File: NOTICE
6
7Description:
8A selection of data files from Unicode.
9
10Local Modifications:
11An additions directory has been added for sequences that we need to support
12in addition to what's specified by Unicode.
13

README.version

1URL: http://www.unicode.org/Public/10.0.0/ucd/ and https://unicode.org/Public/emoji/13.1/
2Version: 10.0.0 beta and 13.1
3BugComponent: 25699
4Owners: nona, siyamed
5

readme.txt

1NOTE: Code downloaded from http://www.unicode.org
2
3The accompanying C source code file "ConvertUTF.c" and the associated header
4file "ConvertUTF.h" provide for conversion between various transformation
5formats of Unicode characters.  The following conversions are supported:
6
7	UTF-32 to UTF-16
8	UTF-32 to UTF-8
9	UTF-16 to UTF-32
10	UTF-16 to UTF-8
11	UTF-8 to UTF-16
12	UTF-8 to UTF-32
13
14In addition, there is a test harness which runs various tests.
15
16The files "CVTUTF7.C" and "CVTUTF7.H" are for archival and historical purposes
17only. They have not been updated to Unicode 3.0 or later and should be
18considered obsolescent. "CVTUTF7.C" contains two functions that can convert
19between UCS2 (i.e., the BMP characters only) and UTF-7. Surrogates are
20not supported, the code has not been tested, and should be considered
21unsuitable for general purpose use.
22
23Please submit any bug reports about these programs here:
24
25	http://www.unicode.org/unicode/reporting.html
26
27Version 1.0: initial version.
28
29Version 1.1: corrected some minor problems; added stricter checks.
30
31Version 1.2: corrected switch statements associated with "extraBytesToRead"
32	in 4 & 5 byte cases, in functions for conversion from UTF8.
33	Note: formally, the 4 & 5 byte cases are illegal in the latest
34	UTF8, but the table and this code has always catered for those,
35	cases since at one time they were legal.
36
37Version 1.3: Updated UTF-8 legality check;
38	updated to use UNI_MAX_LEGAL_UTF32 in UTF-32 conversions
39	Updated UTF-8 legality tests in harness.c
40
41
42Last update: October 19, 2004
43
44
45