[Expat-checkins] expat/lib xmlrole.c,1.8,1.9

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Mon Jul 1 09:47:15 2002


Update of /cvsroot/expat/expat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv7924

Modified Files:
	xmlrole.c 
Log Message:
De-tabify; minor code-style consistency changes.
Removed function that was commented out using "#if 0"; not referenced.


Index: xmlrole.c
===================================================================
RCS file: /cvsroot/expat/expat/lib/xmlrole.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- xmlrole.c	20 May 2002 11:06:41 -0000	1.8
+++ xmlrole.c	1 Jul 2002 16:45:37 -0000	1.9
@@ -56,10 +56,10 @@
 #endif /* not XML_DTD */
 
 typedef int PROLOG_HANDLER(PROLOG_STATE *state,
-			   int tok,
-			   const char *ptr,
-			   const char *end,
-			   const ENCODING *enc);
+                           int tok,
+                           const char *ptr,
+                           const char *end,
+                           const ENCODING *enc);
[...1142 lines suppressed...]
@@ -1267,7 +1244,8 @@
   return XML_ROLE_ERROR;
 }
 
-void XmlPrologStateInit(PROLOG_STATE *state)
+void
+XmlPrologStateInit(PROLOG_STATE *state)
 {
   state->handler = prolog0;
 #ifdef XML_DTD
@@ -1279,7 +1257,8 @@
 
 #ifdef XML_DTD
 
-void XmlPrologStateInitExternalEntity(PROLOG_STATE *state)
+void
+XmlPrologStateInitExternalEntity(PROLOG_STATE *state)
 {
   state->handler = externalSubset0;
   state->documentEntity = 0;