summaryrefslogtreecommitdiff
path: root/tests/test4-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/test4-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/test4-main.c')
-rw-r--r--tests/test4-main.c31
1 files changed, 20 insertions, 11 deletions
diff --git a/tests/test4-main.c b/tests/test4-main.c
index 66df6dc..13e4a4f 100644
--- a/tests/test4-main.c
+++ b/tests/test4-main.c
@@ -39,17 +39,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)
{
g_print ("\n\n") ;
- g_print ("usage: %s <file-to-parse>\n", a_argv[0]) ;
+ g_print ("usage: %s <file-to-parse>\n", prg_name) ;
g_print ("\t <file-to-parse>: the file to parse\n") ;
g_print ("\n\n") ;
g_print ("Tests the cr_parser_parse () method.\n") ;
@@ -63,14 +72,14 @@ 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)
{
g_print ("\n\n") ;
g_print ("%s is a libcroco CROMParser class test program.\n",
- a_argv[0]) ;
+ prg_name) ;
g_print ("%s Parses a file and builds a CSS object model",
- a_argv[0]) ;
+ prg_name) ;
g_print ("It should run on GNU compliants systems.\n") ;
g_print ("\n\n") ;
g_print ("Initial author: Dodji Seketeli <dodji@seketeli.org>.\n") ;
@@ -87,7 +96,7 @@ display_about (int a_argc, char ** a_argv)
*@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 ;
@@ -123,19 +132,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 ;
}