Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mxml
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Armando I. Rivera
mxml
Commits
a90ff175
Unverified
Commit
a90ff175
authored
Jul 04, 2018
by
Michael R Sweet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update va_copy macro for BCC (Issue #211)
parent
e19d38b5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGES.md
CHANGES.md
+1
-0
mxml-string.c
mxml-string.c
+2
-2
No files found.
CHANGES.md
View file @
a90ff175
...
...
@@ -4,6 +4,7 @@
to get full strings for inline text instead of separated words (Issue #190)
-
No longer build documentation sets on macOS since Xcode no longer supports
them (Issue #198)
-
Updated the
`va_copy`
macro for use with BCC (Issue #211)
-
The
`mxmlNewCDATA`
and
`mxmlSetCDATA`
functions incorrectly added the XML
trailer "]]" to the string (Issue #216)
-
Cross-compiling failed on install (Issue #218)
...
...
mxml-string.c
View file @
a90ff175
/*
* String functions for Mini-XML, a small XML file parsing library.
*
* Copyright 2003-201
7
by Michael R Sweet.
* Copyright 2003-201
8
by Michael R Sweet.
*
* These coded instructions, statements, and computer programs are the
* property of Michael R Sweet and are protected by Federal copyright
...
...
@@ -28,7 +28,7 @@
# ifdef __va_copy
# define va_copy(dst,src) __va_copy(dst,src)
# else
# define va_copy(dst,src) memcpy(&dst, src, sizeof(va_list))
# define va_copy(dst,src) memcpy(&dst,
&
src, sizeof(va_list))
# endif
/* __va_copy */
#endif
/* va_copy */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment