]> granicus.if.org Git - libexpat/commitdiff
De-tabify; minor code-style consistency changes.
authorFred L. Drake, Jr. <fdrake@users.sourceforge.net>
Mon, 1 Jul 2002 14:45:51 +0000 (14:45 +0000)
committerFred L. Drake, Jr. <fdrake@users.sourceforge.net>
Mon, 1 Jul 2002 14:45:51 +0000 (14:45 +0000)
expat/examples/elements.c
expat/examples/outline.c

index 9a20c34d3e0b18255eeaa9fcb10d9ee70566f6df..42f0889e78a0cd6953d06574b2933ccd74ad44d0 100644 (file)
@@ -1,7 +1,8 @@
 /* This is simple demonstration of how to use expat. This program
-reads an XML document from standard input and writes a line with the
-name of each element to standard output indenting child elements by
-one tab stop more than their parent element. */
+   reads an XML document from standard input and writes a line with
+   the name of each element to standard output indenting child
+   elements by one tab stop more than their parent element.
+*/
 
 #include <stdio.h>
 #include "expat.h"
@@ -38,9 +39,9 @@ main(int argc, char *argv[])
     done = len < sizeof(buf);
     if (!XML_Parse(parser, buf, len, done)) {
       fprintf(stderr,
-             "%s at line %d\n",
-             XML_ErrorString(XML_GetErrorCode(parser)),
-             XML_GetCurrentLineNumber(parser));
+              "%s at line %d\n",
+              XML_ErrorString(XML_GetErrorCode(parser)),
+              XML_GetCurrentLineNumber(parser));
       return 1;
     }
   } while (!done);
index a296494db531f31805d286c584a85d2db3852b8d..2eeca066c9eb5610e022071ed883ac4160aa28b1 100644 (file)
 #include <stdio.h>
 #include <expat.h>
 
-#define BUFFSIZE       8192
+#define BUFFSIZE        8192
 
 char Buff[BUFFSIZE];
 
 int Depth;
 
 static void
-start(void *data, const char *el, const char **attr) {
+start(void *data, const char *el, const char **attr)
+{
   int i;
 
   for (i = 0; i < Depth; i++)
@@ -45,15 +46,17 @@ start(void *data, const char *el, const char **attr) {
 
   printf("\n");
   Depth++;
-}  /* End of start handler */
+}
 
 static void
-end(void *data, const char *el) {
+end(void *data, const char *el)
+{
   Depth--;
-}  /* End of end handler */
+}
 
 int
-main(int argc, char *argv[]) {
+main(int argc, char *argv[])
+{
   XML_Parser p = XML_ParserCreate(NULL);
   if (! p) {
     fprintf(stderr, "Couldn't allocate memory for parser\n");
@@ -75,8 +78,8 @@ main(int argc, char *argv[]) {
 
     if (! XML_Parse(p, Buff, len, done)) {
       fprintf(stderr, "Parse error at line %d:\n%s\n",
-             XML_GetCurrentLineNumber(p),
-             XML_ErrorString(XML_GetErrorCode(p)));
+              XML_GetCurrentLineNumber(p),
+              XML_ErrorString(XML_GetErrorCode(p)));
       exit(-1);
     }
 
@@ -84,5 +87,4 @@ main(int argc, char *argv[]) {
       break;
   }
   return 0;
-}  /* End of main */
-
+}