>From cc42f4c7038e7032ba048cbeb259c5ec5a3a71c0 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 4df934c5aa414f85c0f8e322f9b88fe09aaa8c8a..ad102361186e5c122b0c01c1b5335139e56f9e73 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.4.2