1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-27 18:50:07 +03:00

include: Make INPUT_CHUNK macro private

This commit is contained in:
Nick Wellnhofer 2024-12-19 21:05:49 +01:00
parent 84a6c82ff8
commit c134e8b4dc
2 changed files with 8 additions and 8 deletions

View File

@ -91,14 +91,6 @@ XMLPUBVAR const unsigned int xmlParserMaxDepth;
*/
#define XML_MAX_NAMELEN 100
/**
* INPUT_CHUNK:
*
* The parser tries to always have that amount of input ready.
* One of the point is providing context when reporting errors.
*/
#define INPUT_CHUNK 250
/**
* IS_BLANK:
* @c: an UNICODE value (int)

View File

@ -60,6 +60,14 @@
#define IS_PUBIDCHAR(c) xmlIsPubidCharQ(c)
#define IS_PUBIDCHAR_CH(c) xmlIsPubidChar_ch(c)
/**
* INPUT_CHUNK:
*
* The parser tries to always have that amount of input ready.
* One of the point is providing context when reporting errors.
*/
#define INPUT_CHUNK 250
struct _xmlAttrHashBucket {
int index;
};