whitespace fixes - xmlparser - XML parser | |
git clone git://git.codemadness.org/xmlparser | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit e9114f99e2b610c1d8899dcffca7edc28e09b614 | |
parent 287a59a2d0fc7c1f98d33e6142409c755fd39216 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Fri, 7 Dec 2018 19:50:18 +0100 | |
whitespace fixes | |
Diffstat: | |
M skeleton.c | 14 +++++++------- | |
1 file changed, 7 insertions(+), 7 deletions(-) | |
--- | |
diff --git a/skeleton.c b/skeleton.c | |
@@ -15,7 +15,7 @@ xmlattrentity(XMLParser *x, const char *t, size_t tl, const c… | |
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; | |
} |