mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-10-31 18:39:57 +00:00
50 lines
651 B
C
50 lines
651 B
C
//
|
||
// 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.
|
||
//
|
||
|
||
#ifndef MXML_CONFIG_H
|
||
# define MXML_CONFIG_H
|
||
# include <stdio.h>
|
||
# include <stdlib.h>
|
||
# include <string.h>
|
||
# include <stdarg.h>
|
||
# include <ctype.h>
|
||
|
||
|
||
//
|
||
// Version number
|
||
//
|
||
|
||
# define MXML_VERSION ""
|
||
|
||
|
||
//
|
||
// Inline function support
|
||
//
|
||
|
||
# define inline
|
||
|
||
|
||
//
|
||
// Long long support
|
||
//
|
||
|
||
# undef HAVE_LONG_LONG_INT
|
||
|
||
|
||
//
|
||
// Have <pthread.h>?
|
||
//
|
||
|
||
# undef HAVE_PTHREAD_H
|
||
|
||
|
||
#endif // !MXML_CONFIG_H
|