[Redbutton-devel] SF.net SVN: redbutton: [485] redbutton-author/trunk/parser.c.header
Brought to you by:
skilvington
|
From: <ski...@us...> - 2008-03-20 12:04:56
|
Revision: 485
http://redbutton.svn.sourceforge.net/redbutton/?rev=485&view=rev
Author: skilvington
Date: 2008-03-20 05:04:54 -0700 (Thu, 20 Mar 2008)
Log Message:
-----------
white space
Modified Paths:
--------------
redbutton-author/trunk/parser.c.header
Modified: redbutton-author/trunk/parser.c.header
===================================================================
--- redbutton-author/trunk/parser.c.header 2008-03-20 11:54:45 UTC (rev 484)
+++ redbutton-author/trunk/parser.c.header 2008-03-20 12:04:54 UTC (rev 485)
@@ -128,7 +128,8 @@
* parser functions for the predefined types
*/
-void parse_BOOLEAN(struct node *parent)
+void
+parse_BOOLEAN(struct node *parent)
{
if(next_token() != BOOLEAN)
parse_error("Unexpected token '%s'; expecting 'true' or 'false'", token_text());
@@ -144,8 +145,8 @@
return;
}
-
-void parse_INTEGER(struct node *parent)
+void
+parse_INTEGER(struct node *parent)
{
if(next_token() != INTEGER)
parse_error("Unexpected token '%s'; expecting an integer", token_text());
@@ -161,7 +162,8 @@
return;
}
-void parse_OCTETSTRING(struct node *parent)
+void
+parse_OCTETSTRING(struct node *parent)
{
/*
* create an explicit UNIVERSAL type if necessary
@@ -178,7 +180,8 @@
return;
}
-void parse_STRING(struct node *parent)
+void
+parse_STRING(struct node *parent)
{
if(next_token() != STRING)
parse_error("Unexpected token '%s'; expecting \"STRING\"", token_text());
@@ -190,7 +193,8 @@
return;
}
-void parse_QPRINTABLE(struct node *parent)
+void
+parse_QPRINTABLE(struct node *parent)
{
if(next_token() != QPRINTABLE)
parse_error("Unexpected token '%s'; expecting 'QPRINTABLE'", token_text());
@@ -202,7 +206,8 @@
return;
}
-void parse_BASE64(struct node *parent)
+void
+parse_BASE64(struct node *parent)
{
if(next_token() != BASE64)
parse_error("Unexpected token '%s'; expecting `BASE64`", token_text());
@@ -214,7 +219,8 @@
return;
}
-void parse_Null(struct node *parent)
+void
+parse_Null(struct node *parent)
{
if(next_token() != Null)
parse_error("Unexpected token '%s'; expecting 'Null'", token_text());
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|