blob: c8f76763a3ffbfc282457ff8326b6e83da4a125c [file] [log] [blame]
Bjorn Reese70a9da52001-04-21 16:57:29 +00001/*
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
Daniel Veillard6761eee2001-06-11 10:29:38 +000012#if defined(WIN32) && !defined(__CYGWIN__)
Bjorn Reese70a9da52001-04-21 16:57:29 +000013#include "win32config.h"
14#else
15#include "config.h"
Bjorn Reese70a9da52001-04-21 16:57:29 +000016#include <libxml/xmlversion.h>
Daniel Veillard87ee9142001-06-28 12:54:16 +000017#endif
Bjorn Reese70a9da52001-04-21 16:57:29 +000018
19#ifdef WITHOUT_TRIO
20#include <stdio.h>
21#else
Daniel Veillard5e2dace2001-07-18 19:30:27 +000022/**
23 * TRIO_REPLACE_STDIO:
24 *
25 * This macro is defined if teh trio string formatting functions are to
26 * be used instead of the default stdio ones.
27 */
Bjorn Reese70a9da52001-04-21 16:57:29 +000028#define TRIO_REPLACE_STDIO
29#include "trio.h"
30#endif
31
32#endif /* ! __XML_LIBXML_H__ */