mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

Introduce xmlStrVASPrintf, trying to handle buggy snprintf implementations. Introduce xmlSetError to set errors atomically. Introduce xmlUpdateError to set an error, fixing up node, file and line. Introduce helper function xmlRaiseMemoryError. Make legacy error handlers call xmlReportError, avoiding checks in xmlVRaiseError. Remove fragile support for getting file and line info from XInclude nodes.
14 lines
360 B
C
14 lines
360 B
C
#ifndef XML_STRING_H_PRIVATE__
|
|
#define XML_STRING_H_PRIVATE__
|
|
|
|
#include <libxml/xmlstring.h>
|
|
|
|
XML_HIDDEN int
|
|
xmlStrVASPrintf(xmlChar **out, int maxSize, const char *msg, va_list ap);
|
|
XML_HIDDEN int
|
|
xmlStrASPrintf(xmlChar **out, int maxSize, const char *msg, ...);
|
|
XML_HIDDEN xmlChar *
|
|
xmlEscapeFormatString(xmlChar **msg);
|
|
|
|
#endif /* XML_STRING_H_PRIVATE__ */
|