2024-02-27 21:50:25 +00:00
|
|
|
|
//
|
|
|
|
|
// Xcode 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.
|
|
|
|
|
//
|
2019-02-13 16:25:47 +00:00
|
|
|
|
|
2024-02-27 21:50:25 +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>
|
2019-02-13 16:25:47 +00:00
|
|
|
|
|
|
|
|
|
|
2024-02-27 21:50:25 +00:00
|
|
|
|
//
|
|
|
|
|
// Version number
|
|
|
|
|
//
|
2019-02-13 16:25:47 +00:00
|
|
|
|
|
2024-06-14 10:28:30 +00:00
|
|
|
|
# define MXML_VERSION "Mini-XML v4.0.4"
|
2019-02-13 16:25:47 +00:00
|
|
|
|
|
|
|
|
|
|
2024-02-27 21:50:25 +00:00
|
|
|
|
//
|
|
|
|
|
// Inline function support
|
|
|
|
|
//
|
2019-02-13 16:25:47 +00:00
|
|
|
|
|
2024-02-27 21:50:25 +00:00
|
|
|
|
# define inline
|
2019-02-13 16:25:47 +00:00
|
|
|
|
|
|
|
|
|
|
2024-02-27 21:50:25 +00:00
|
|
|
|
//
|
|
|
|
|
// Have <pthread.h>?
|
|
|
|
|
//
|
2019-02-13 16:25:47 +00:00
|
|
|
|
|
2024-02-27 21:50:25 +00:00
|
|
|
|
# define HAVE_PTHREAD_H
|
2019-02-13 16:25:47 +00:00
|
|
|
|
|
|
|
|
|
|
2024-02-27 21:50:25 +00:00
|
|
|
|
#endif // !MXML_CONFIG_H
|