| Index: third_party/libxml/src/include/libxml/hash.h
|
| diff --git a/third_party/libxml/src/include/libxml/hash.h b/third_party/libxml/src/include/libxml/hash.h
|
| index 7fe4be754c3e7675e15a4b019c7ddecc967b4e45..dc8ab7ec52c172d48ff7d0088d028a88d4fd012e 100644
|
| --- a/third_party/libxml/src/include/libxml/hash.h
|
| +++ b/third_party/libxml/src/include/libxml/hash.h
|
| @@ -1,7 +1,7 @@
|
| /*
|
| * Summary: Chained hash tables
|
| - * Description: This module implements the hash table support used in
|
| - * various places in the library.
|
| + * Description: This module implements the hash table support used in
|
| + * various places in the library.
|
| *
|
| * Copy: See Copyright for the status of this software.
|
| *
|
| @@ -108,40 +108,40 @@ XMLPUBFUN xmlHashTablePtr XMLCALL
|
| XMLPUBFUN xmlHashTablePtr XMLCALL
|
| xmlHashCreateDict(int size,
|
| xmlDictPtr dict);
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlHashFree (xmlHashTablePtr table,
|
| xmlHashDeallocator f);
|
|
|
| /*
|
| * Add a new entry to the hash table.
|
| */
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashAddEntry (xmlHashTablePtr table,
|
| const xmlChar *name,
|
| void *userdata);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashUpdateEntry(xmlHashTablePtr table,
|
| const xmlChar *name,
|
| void *userdata,
|
| xmlHashDeallocator f);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashAddEntry2(xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *name2,
|
| void *userdata);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashUpdateEntry2(xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *name2,
|
| void *userdata,
|
| xmlHashDeallocator f);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashAddEntry3(xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *name2,
|
| const xmlChar *name3,
|
| void *userdata);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashUpdateEntry3(xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *name2,
|
| @@ -152,13 +152,13 @@ XMLPUBFUN int XMLCALL
|
| /*
|
| * Remove an entry from the hash table.
|
| */
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashRemoveEntry(xmlHashTablePtr table, const xmlChar *name,
|
| xmlHashDeallocator f);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashRemoveEntry2(xmlHashTablePtr table, const xmlChar *name,
|
| const xmlChar *name2, xmlHashDeallocator f);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name,
|
| const xmlChar *name2, const xmlChar *name3,
|
| xmlHashDeallocator f);
|
| @@ -166,29 +166,29 @@ XMLPUBFUN int XMLCALL
|
| /*
|
| * Retrieve the userdata.
|
| */
|
| -XMLPUBFUN void * XMLCALL
|
| +XMLPUBFUN void * XMLCALL
|
| xmlHashLookup (xmlHashTablePtr table,
|
| const xmlChar *name);
|
| -XMLPUBFUN void * XMLCALL
|
| +XMLPUBFUN void * XMLCALL
|
| xmlHashLookup2 (xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *name2);
|
| -XMLPUBFUN void * XMLCALL
|
| +XMLPUBFUN void * XMLCALL
|
| xmlHashLookup3 (xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *name2,
|
| const xmlChar *name3);
|
| -XMLPUBFUN void * XMLCALL
|
| +XMLPUBFUN void * XMLCALL
|
| xmlHashQLookup (xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *prefix);
|
| -XMLPUBFUN void * XMLCALL
|
| +XMLPUBFUN void * XMLCALL
|
| xmlHashQLookup2 (xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *prefix,
|
| const xmlChar *name2,
|
| const xmlChar *prefix2);
|
| -XMLPUBFUN void * XMLCALL
|
| +XMLPUBFUN void * XMLCALL
|
| xmlHashQLookup3 (xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *prefix,
|
| @@ -200,27 +200,27 @@ XMLPUBFUN void * XMLCALL
|
| /*
|
| * Helpers.
|
| */
|
| -XMLPUBFUN xmlHashTablePtr XMLCALL
|
| +XMLPUBFUN xmlHashTablePtr XMLCALL
|
| xmlHashCopy (xmlHashTablePtr table,
|
| xmlHashCopier f);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlHashSize (xmlHashTablePtr table);
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlHashScan (xmlHashTablePtr table,
|
| xmlHashScanner f,
|
| void *data);
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlHashScan3 (xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *name2,
|
| const xmlChar *name3,
|
| xmlHashScanner f,
|
| void *data);
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlHashScanFull (xmlHashTablePtr table,
|
| xmlHashScannerFull f,
|
| void *data);
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlHashScanFull3(xmlHashTablePtr table,
|
| const xmlChar *name,
|
| const xmlChar *name2,
|
|
|