whitespace fixes - xmlparser - XML parser
(HTM) git clone git://git.codemadness.org/xmlparser
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit e9114f99e2b610c1d8899dcffca7edc28e09b614
(DIR) parent 287a59a2d0fc7c1f98d33e6142409c755fd39216
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Fri, 7 Dec 2018 19:50:18 +0100
whitespace fixes
Diffstat:
M skeleton.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
---
(DIR) diff --git a/skeleton.c b/skeleton.c
@@ -15,7 +15,7 @@ xmlattrentity(XMLParser *x, const char *t, size_t tl, const char *a, size_t al,
const char *v, size_t vl)
{
}
-
+
void
xmlattrend(XMLParser *x, const char *t, size_t tl, const char *a, size_t al)
{
@@ -95,7 +95,7 @@ int
main(void)
{
XMLParser x = { 0 };
-
+
x.xmlattr = xmlattr;
x.xmlattrend = xmlattrend;
x.xmlattrstart = xmlattrstart;
@@ -105,18 +105,18 @@ main(void)
x.xmlcdataend =xmlcdataend;
x.xmlcommentstart = xmlcommentstart;
x.xmlcomment = xmlcomment;
- x.xmlcommentend = xmlcommentend;
+ x.xmlcommentend = xmlcommentend;
x.xmldata = xmldata;
x.xmldataend = xmldataend;
- x.xmldataentity = xmldataentity;
- x.xmldatastart = xmldatastart;
+ x.xmldataentity = xmldataentity;
+ x.xmldatastart = xmldatastart;
x.xmltagend = xmltagend;
x.xmltagstart = xmltagstart;
x.xmltagstartparsed = xmltagstartparsed;
-
+
x.getnext = getchar;
xml_parse(&x);
-
+
return 0;
}