mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 11:58:32 +00:00
[LIBXML2] Update to version 2.9.7. CORE-14291
This commit is contained in:
parent
b97f0a8fed
commit
fc82f8e2e3
52 changed files with 1978 additions and 2458 deletions
6
sdk/lib/3rdparty/libxml2/xmlunicode.c
vendored
6
sdk/lib/3rdparty/libxml2/xmlunicode.c
vendored
|
@ -29,14 +29,14 @@ typedef struct {
|
|||
} xmlUnicodeRange;
|
||||
|
||||
typedef struct {
|
||||
xmlUnicodeRange *table;
|
||||
const xmlUnicodeRange *table;
|
||||
int numentries;
|
||||
} xmlUnicodeNameTable;
|
||||
|
||||
|
||||
static xmlIntFunc *xmlUnicodeLookup(xmlUnicodeNameTable *tptr, const char *tname);
|
||||
|
||||
static xmlUnicodeRange xmlUnicodeBlocks[] = {
|
||||
static const xmlUnicodeRange xmlUnicodeBlocks[] = {
|
||||
{"AegeanNumbers", xmlUCSIsAegeanNumbers},
|
||||
{"AlphabeticPresentationForms", xmlUCSIsAlphabeticPresentationForms},
|
||||
{"Arabic", xmlUCSIsArabic},
|
||||
|
@ -945,7 +945,7 @@ static xmlUnicodeNameTable xmlUnicodeCatTbl = {xmlUnicodeCats, 36};
|
|||
static xmlIntFunc
|
||||
*xmlUnicodeLookup(xmlUnicodeNameTable *tptr, const char *tname) {
|
||||
int low, high, mid, cmp;
|
||||
xmlUnicodeRange *sptr;
|
||||
const xmlUnicodeRange *sptr;
|
||||
|
||||
if ((tptr == NULL) || (tname == NULL)) return(NULL);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue