>From 2c01958aaface15d850b4ed766d13f93b7efb0af Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 11 Jan 2014 15:18:40 +0100 Subject: [PATCH 3/6] INI: Fix warning missing-prototypes with experimental functions --- ini/ini_print.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ini/ini_print.c b/ini/ini_print.c index c27bfa2d3b884734182d8c649c0c8884e31df844..3db439ffc684ea66e6803a7f6078279d6b05f924 100644 --- a/ini/ini_print.c +++ b/ini/ini_print.c @@ -338,11 +338,13 @@ void print_file_parsing_errors(FILE *file, } +void print_grammar_errors(FILE *file, + struct collection_item *error_list); /* Print errors and warnings that were detected while processing grammar. * * The following doxygen description is moved here. * When the function gets exposed move it into - * the header file. + * the header file and remove prototype from this file. */ /** * @brief Print errors and warnings that were detected while @@ -367,11 +369,13 @@ void print_grammar_errors(FILE *file, INI_FAMILY_GRAMMAR); } +void print_validation_errors(FILE *file, + struct collection_item *error_list); /* Print errors and warnings that were detected while validating INI file. * * The following doxygen description is moved here. * When the function gets exposed move it into - * the header file. + * the header file and remove prototype from this file. */ /** * @brief Print errors and warnings that were detected while -- 1.8.5.3