>From cd350cf94ea9455eae94d139f68b4137d79ea076 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 11 Jan 2014 15:18:40 +0100 Subject: [PATCH 3/5] 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 1ef965856ebe1fdc9ee8928db508db6f74836640..62b20ff932a9d5f34be41327c75f7c10065f20ae 100644 --- a/ini/ini_print.c +++ b/ini/ini_print.c @@ -339,11 +339,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 @@ -368,11 +370,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.4.2