2024-02-27 20:04:27 +00:00
|
|
|
|
//
|
|
|
|
|
// Configuration file for Mini-XML, a small XML file parsing library.
|
|
|
|
|
//
|
|
|
|
|
// https://www.msweet.org/mxml
|
|
|
|
|
//
|
|
|
|
|
// Copyright © 2003-2024 by Michael R Sweet.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under Apache License v2.0. See the file "LICENSE" for more
|
|
|
|
|
// information.
|
|
|
|
|
//
|
2003-07-20 13:41:17 +00:00
|
|
|
|
|
2024-02-27 20:04:27 +00:00
|
|
|
|
#ifndef MXML_CONFIG_H
|
|
|
|
|
# define MXML_CONFIG_H
|
|
|
|
|
# include <stdio.h>
|
|
|
|
|
# include <stdlib.h>
|
|
|
|
|
# include <string.h>
|
|
|
|
|
# include <stdarg.h>
|
|
|
|
|
# include <ctype.h>
|
2003-07-27 23:11:40 +00:00
|
|
|
|
|
2003-09-28 12:44:39 +00:00
|
|
|
|
|
2024-02-27 20:04:27 +00:00
|
|
|
|
//
|
|
|
|
|
// Version number
|
|
|
|
|
//
|
2003-09-28 12:44:39 +00:00
|
|
|
|
|
2024-02-27 20:04:27 +00:00
|
|
|
|
# define MXML_VERSION ""
|
2004-05-02 16:04:40 +00:00
|
|
|
|
|
|
|
|
|
|
2024-02-27 20:04:27 +00:00
|
|
|
|
//
|
|
|
|
|
// Inline function support
|
|
|
|
|
//
|
2004-05-02 16:04:40 +00:00
|
|
|
|
|
2024-02-27 20:04:27 +00:00
|
|
|
|
# define inline
|
2007-09-09 07:27:08 +00:00
|
|
|
|
|
|
|
|
|
|
2024-02-27 20:04:27 +00:00
|
|
|
|
//
|
|
|
|
|
// Have <pthread.h>?
|
|
|
|
|
//
|
2009-04-18 17:05:52 +00:00
|
|
|
|
|
2024-02-27 20:04:27 +00:00
|
|
|
|
# undef HAVE_PTHREAD_H
|
2003-09-28 12:44:39 +00:00
|
|
|
|
|
2003-07-27 23:11:40 +00:00
|
|
|
|
|
2024-02-27 20:04:27 +00:00
|
|
|
|
#endif // !MXML_CONFIG_H
|