From 10035f6c63e3ad2a1805c14dd30f53296a6a97b3 Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Thu, 16 Apr 2009 21:59:46 -0400 Subject: INI parser. Adding comments to avoid confusion. There was a confusion about the functions that were recently added. They are incomplete. New added comments make it clear. --- ini/ini_config.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ini') diff --git a/ini/ini_config.c b/ini/ini_config.c index 9af388b..c28c648 100644 --- a/ini/ini_config.c +++ b/ini/ini_config.c @@ -100,6 +100,7 @@ const char *parsing_error_str(int parsing_error) const char *grammar_error_str(int grammar_error) { const char *placeholder= _("Unknown grammar error."); + /* FIXME - this is a temporary placeholder !!!! */ const char *str_error[] = { _(""), _(""), _(""), @@ -120,6 +121,7 @@ const char *grammar_error_str(int grammar_error) const char *validation_error_str(int validation_error) { const char *placeholder= _("Unknown validation error."); + /* FIXME - this is a temporary placeholder !!!! */ const char *str_error[] = { _(""), _(""), _(""), -- cgit