mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-04 21:04:57 +00:00
lib/xmlparse.c: Make function getRootParserOf available to XML_GE != 1
This commit is contained in:
parent
c5d0761f10
commit
004e55a7e1
1 changed files with 5 additions and 1 deletions
|
@ -627,10 +627,10 @@ static void entityTrackingOnOpen(XML_Parser parser, ENTITY *entity,
|
|||
int sourceLine);
|
||||
static void entityTrackingOnClose(XML_Parser parser, ENTITY *entity,
|
||||
int sourceLine);
|
||||
#endif /* XML_GE == 1 */
|
||||
|
||||
static XML_Parser getRootParserOf(XML_Parser parser,
|
||||
unsigned int *outLevelDiff);
|
||||
#endif /* XML_GE == 1 */
|
||||
|
||||
static unsigned long getDebugLevel(const char *variableName,
|
||||
unsigned long defaultDebugLevel);
|
||||
|
@ -8288,6 +8288,8 @@ entityTrackingOnClose(XML_Parser originParser, ENTITY *entity, int sourceLine) {
|
|||
rootParser->m_entity_stats.currentDepth--;
|
||||
}
|
||||
|
||||
#endif /* XML_GE == 1 */
|
||||
|
||||
static XML_Parser
|
||||
getRootParserOf(XML_Parser parser, unsigned int *outLevelDiff) {
|
||||
XML_Parser rootParser = parser;
|
||||
|
@ -8303,6 +8305,8 @@ getRootParserOf(XML_Parser parser, unsigned int *outLevelDiff) {
|
|||
return rootParser;
|
||||
}
|
||||
|
||||
#if XML_GE == 1
|
||||
|
||||
const char *
|
||||
unsignedCharToPrintable(unsigned char c) {
|
||||
switch (c) {
|
||||
|
|
Loading…
Add table
Reference in a new issue