Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5bfc2eb6
Commit
5bfc2eb6
authored
Mar 10, 2000
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Marc-Andre-Lemburg: The Unicode Database.
parent
2d0f5f93
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65663 additions
and
0 deletions
+65663
-0
Modules/unicodedatabase.c
Modules/unicodedatabase.c
+65630
-0
Modules/unicodedatabase.h
Modules/unicodedatabase.h
+33
-0
No files found.
Modules/unicodedatabase.c
0 → 100644
View file @
5bfc2eb6
This diff is collapsed.
Click to expand it.
Modules/unicodedatabase.h
0 → 100644
View file @
5bfc2eb6
/* ------------------------------------------------------------------------
unicodedatabase -- The Unicode 3.0 data base.
Data was extracted from the Unicode 3.0 UnicodeData.txt file.
Written by Marc-Andre Lemburg (mal@lemburg.com).
(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
------------------------------------------------------------------------ */
/* --- Unicode database entry --------------------------------------------- */
typedef
struct
{
const
unsigned
char
category
;
/* index into
_PyUnicode_CategoryNames */
const
unsigned
char
combining
;
/* combining class value 0 - 255 */
const
unsigned
char
bidirectional
;
/* index into
_PyUnicode_BidirectionalNames */
const
unsigned
char
mirrored
;
/* true if mirrored in bidir mode */
const
char
*
decomposition
;
/* pointer to the decomposition
string or NULL */
}
_PyUnicode_DatabaseRecord
;
/* --- Unicode category names --------------------------------------------- */
extern
const
char
*
_PyUnicode_CategoryNames
[
32
];
extern
const
char
*
_PyUnicode_BidirectionalNames
[
21
];
/* --- Unicode Database --------------------------------------------------- */
extern
const
_PyUnicode_DatabaseRecord
_PyUnicode_Database
[
65536
];
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