/* * Xcode configuration file for Mini-XML, a small XML file parsing library. * * https://www.msweet.org/mxml * * Copyright © 2003-2020 by Michael R Sweet. * * Licensed under Apache License v2.0. See the file "LICENSE" for more * information. */ /* * Include necessary headers... */ #include #include #include #include #include /* * Version number... */ #cmakedefine MXML_VERSION "@MXML_VERSION@" /* * Inline function support... */ #define inline /* * Long long support... */ #cmakedefine HAVE_LONG_LONG 1 /* * Do we have the *printf() functions? */ #cmakedefine HAVE_SNPRINTF 1 #cmakedefine HAVE_VASPRINTF 1 #cmakedefine HAVE_VSNPRINTF 1 /* * Do we have the strXXX() functions? */ #cmakedefine HAVE_STRDUP 1 #cmakedefine HAVE_STRLCAT 1 #cmakedefine HAVE_STRLCPY 1 /* * Do we have threading support? */ #define HAVE_PTHREAD_H 1 /* * Define prototypes for string functions as needed... */ extern char *_mxml_strdupf(const char *, ...); extern char *_mxml_vstrdupf(const char *, va_list);