mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-28 23:14:57 +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.
9 lines
189 B
C
9 lines
189 B
C
#ifndef XML_REGEXP_H_PRIVATE__
|
|
#define XML_REGEXP_H_PRIVATE__
|
|
|
|
#include <libxml/xmlautomata.h>
|
|
|
|
void xmlAutomataSetFlags(xmlAutomataPtr am, int flags);
|
|
|
|
#endif /* XML_REGEXP_H_PRIVATE__ */
|