summaryrefslogtreecommitdiff
path: root/tests/test2-main.c
diff options
context:
space:
mode:
authorDodji Seketeli <dodji@src.gnome.org>2003-03-02 18:58:59 +0000
committerDodji Seketeli <dodji@src.gnome.org>2003-03-02 18:58:59 +0000
commit1217c1902e50ad1b7de22d43d1e2c0f0a652ec1f (patch)
tree0c0e1058b760186a1a2bda3a80189adab90480e1 /tests/test2-main.c
parent2e07149b250230b8415a09cd2bddbfbad3f098f7 (diff)
downloadlibcroco-1217c1902e50ad1b7de22d43d1e2c0f0a652ec1f.tar.gz
Turned on compilation with goddamit warning options.
So I killed an awfully great number of warnings messages. Also fixed some small regressions that occured during the rewrite of cr_tknzr_get_next_toke().
Diffstat (limited to 'tests/test2-main.c')
-rw-r--r--tests/test2-main.c38
1 files changed, 24 insertions, 14 deletions
diff --git a/tests/test2-main.c b/tests/test2-main.c
index 50a7d0a..6b25ab4 100644
--- a/tests/test2-main.c
+++ b/tests/test2-main.c
@@ -41,17 +41,26 @@
CRDocHandler * gv_test_handler = {0} ;
+static void
+display_help (char *prg_name) ;
+
+static void
+display_about (char *prg_name) ;
+
+static enum CRStatus
+test_cr_parser_parse (guchar * a_file_uri) ;
+
/**
*Displays the usage of the test
*facility.
*@param a_argc the argc variable passed to the main function.
*@param a_argv the argv variable passed to the main function.
*/
-void
-display_help (int a_argc, char ** a_argv)
+static void
+display_help (char *prg_name)
{
fprintf (stdout,"\n\n") ;
- fprintf (stdout,"usage: %s <file-to-parse>\n", a_argv[0]) ;
+ fprintf (stdout,"usage: %s <file-to-parse>\n", prg_name) ;
fprintf (stdout,"\t <file-to-parse>: the file to parse\n") ;
fprintf (stdout,"\n\n") ;
fprintf (stdout,"Tests the cr_parser_parse () method.\n") ;
@@ -64,11 +73,11 @@ display_help (int a_argc, char ** a_argv)
*@param a_argc the argc variable passed to the main function.
*@param a_argv the argv variable passed to the main function.
*/
-void
-display_about (int a_argc, char ** a_argv)
+static void
+display_about (char *prg_name)
{
fprintf (stdout,"\n\n") ;
- fprintf (stdout,"%s is a libcroco CRParser class test program.\n", a_argv[0]) ;
+ fprintf (stdout,"%s is a libcroco CRParser class test program.\n", prg_name) ;
fprintf (stdout,"It should run on GNU compliants systems.\n") ;
fprintf (stdout,"\n\n") ;
fprintf (stdout,"Initial author: Dodji Seketeli <dodji@seketeli.org>.\n") ;
@@ -129,7 +138,8 @@ test_import_style (CRDocHandler *a_handler,
if (str)
{
- fprintf (stdout,str) ; fprintf (stdout,"\n") ;
+ fprintf (stdout,str) ;
+ fprintf (stdout,"\n") ;
g_free (str) ;
str = NULL ;
}
@@ -146,7 +156,8 @@ test_import_style (CRDocHandler *a_handler,
a_uri_default_ns->len) ;
if (str)
{
- fprintf (stdout,str) ; fprintf (stdout,"\n") ;
+ fprintf (stdout,str) ;
+ fprintf (stdout,"\n") ;
g_free (str) ;
str = NULL ;
}
@@ -154,8 +165,7 @@ test_import_style (CRDocHandler *a_handler,
}
fprintf (stdout,"******************\n\n") ;
-
-
+ a_uri = NULL; /*keep compiler happy*/
}
@@ -565,7 +575,7 @@ init_test_sac_handler (CRDocHandler *a_handler)
*@return CR_OK upon successfull completion of the
*function, an error code otherwise.
*/
-enum CRStatus
+static enum CRStatus
test_cr_parser_parse (guchar * a_file_uri)
{
enum CRStatus status = CR_OK ;
@@ -609,19 +619,19 @@ main (int argc, char ** argv)
if (options.display_help == TRUE)
{
- display_help (argc, argv) ;
+ display_help (argv[0]) ;
return 0 ;
}
if (options.display_about == TRUE)
{
- display_about (argc, argv) ;
+ display_about (argv[0]) ;
return 0 ;
}
if (options.files_list == NULL)
{
- display_help (argc, argv) ;
+ display_help (argv[0]) ;
return 0 ;
}