Initial revision
[TestXSLT.git] / libxml2 / libxml.h
1 /*
2  * libxml.h: internal header only used during the compilation of libxml
3  *
4  * See COPYRIGHT for the status of this software
5  *
6  * Author: breese@users.sourceforge.net
7  */
8
9 #ifndef __XML_LIBXML_H__
10 #define __XML_LIBXML_H__
11
12 #if defined(WIN32) && !defined(__CYGWIN__)
13 #include "win32config.h"
14 #elif defined(macintosh)
15 #include "config-mac.h"
16 #else
17 #include "config.h"
18 #include <libxml/xmlversion.h>
19 #endif
20
21 #ifndef WITH_TRIO
22 #include <stdio.h>
23 #else
24 /**
25  * TRIO_REPLACE_STDIO:
26  *
27  * This macro is defined if teh trio string formatting functions are to
28  * be used instead of the default stdio ones.
29  */
30 #define TRIO_REPLACE_STDIO
31 #include "trio.h"
32 #endif
33
34 #endif /* ! __XML_LIBXML_H__ */