mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2026-01-26 21:41:34 +03:00
Private functions were previously declared - in header files in the root directory - in public headers guarded with IN_LIBXML - in libxml.h - redundantly in source files that used them. Consolidate all private header files in include/private.
14 lines
225 B
C
14 lines
225 B
C
#ifndef XML_HTML_H_PRIVATE__
|
|
#define XML_HTML_H_PRIVATE__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#ifdef LIBXML_HTML_ENABLED
|
|
|
|
void __htmlParseContent(void *ctx);
|
|
|
|
#endif /* LIBXML_HTML_ENABLED */
|
|
|
|
#endif /* XML_HTML_H_PRIVATE__ */
|
|
|