From f8c52d8ac9627ac02a036a16185ef49effe3851f Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 13 Feb 2019 11:27:58 -0500 Subject: [PATCH] Update Visual Studio config.h. Update header comments in Xcode config.h. --- vcnet/config.h | 7 ++++++- xcode/config.h | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/vcnet/config.h b/vcnet/config.h index a55964b..da2fd91 100644 --- a/vcnet/config.h +++ b/vcnet/config.h @@ -63,7 +63,7 @@ * Version number... */ -#define MXML_VERSION "Mini-XML v2.13" +#define MXML_VERSION "Mini-XML v3.0" /* @@ -113,6 +113,11 @@ extern char *_mxml_strdup(const char *); # define strdup _mxml_strdup # endif /* !HAVE_STRDUP */ +# ifndef HAVE_STRLCAT +extern size_t _mxml_strlcat(char *, const char *, size_t); +# define strlcat _mxml_strlcat +# endif /* !HAVE_STRLCAT */ + # ifndef HAVE_STRLCPY extern size_t _mxml_strlcpy(char *, const char *, size_t); # define strlcpy _mxml_strlcpy diff --git a/xcode/config.h b/xcode/config.h index 60ce03b..72ca7bc 100644 --- a/xcode/config.h +++ b/xcode/config.h @@ -1,5 +1,5 @@ /* - * Configuration file for Mini-XML, a small XML file parsing library. + * Xcode configuration file for Mini-XML, a small XML file parsing library. * * https://www.msweet.org/mxml *